1
0
Fork 0

Normalize start_time and end_time parameter names in Friendica API event endpoints

This commit is contained in:
Hypolite Petovan 2022-07-24 05:49:18 -04:00
commit 946db2ab45
4 changed files with 50 additions and 46 deletions

View file

@ -410,13 +410,13 @@ Ex: Wed May 23 06:01:13 +0000 2007
</tr>
<tr>
<td><code>startTime</code></td>
<td><code>start_time</code></td>
<td>String (UTC <code>YYYY-MM-DD HH:II:SS)</code>)</td>
<td></td>
</tr>
<tr>
<td><code>endTime</code></td>
<td><code>end_time</code></td>
<td>String (UTC <code>YYYY-MM-DD HH:II:SS)</code>)</td>
<td>Optional (null date is <code>0001-01-01 00:00:00</code></td>
</tr>

View file

@ -32,11 +32,15 @@ Create a new event for the current logged in user.
- `id` : (optional) id of event, event will be amended if supplied
- `name` : name of the event (required)
- `startTime` : start of the event (ISO), required
- `endTime` : (optional) end of the event, event is open end, if not supplied
- `start_time` : start of the event (ISO), required
- `end_time` : (optional) end of the event, event is open end, if not supplied
- `desc` : (optional) description of the event
- `place` : (optional) location of the event
- `publish` : (optional) create message for event
- `allow_cid` : (optional) ACL-formatted list of allowed contact ids if private event
- `allow_gid` : (optional) ACL-formatted list of disallowed contact ids if private event
- `deny_cid` : (optional) ACL-formatted list of allowed group ids if private event
- `deny_gid` : (optional) ACL-formatted list of disallowed group ids if private event
### POST api/friendica/event_delete