sort lists
This commit is contained in:
parent
06acec0533
commit
cee256f22e
1 changed files with 23 additions and 1 deletions
|
@ -25,6 +25,28 @@ It neglets all event related fields but `title`, `summary` and `url` which it us
|
|||
|
||||
### Optional
|
||||
|
||||
- [`anonymousparticipationenabled`](https://docs.joinmobilizon.org/contribute/activity_pub/#anonymousparticipationenabled)
|
||||
- `category`: default list of categories can be found [in the source code](https://framagit.org/framasoft/mobilizon/-/blob/main/lib/mobilizon/events/categories.ex?ref_type=heads#L28), but it can be extended via environment variables. Note that the source code shows them in lowercase, but they have to be passed as uppercase, e.g. `MOVEMENTS_POLITICS`.
|
||||
- [`commentsEnabled`](https://docs.joinpeertube.org/api/activitypub)
|
||||
- `contacts`: a list of contacts: each item might be just the `id`/`url` or an `Actor` object.
|
||||
- [`content`](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-content): `contentMap` is currently not supported by Mobilizon.
|
||||
- [`endTime`](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-endTime)
|
||||
- `externalParticipationUrl`: Only used if `joinMode` is set to `external`.
|
||||
- `is_online`: Boolean indicating whether the Event is online.
|
||||
- [`joinMode`](https://docs.joinmobilizon.org/contribute/activity_pub/#joinmode): `[free, restricted, invite, external]` default is `free`.
|
||||
- [`location`](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-location): The subkey [`address`](https://schema.org/address) is accepted, both as [`PostalAddress`](https://schema.org/PostalAddress) and pure text.
|
||||
- [`maximumAttendeeCapacity`](https://docs.joinmobilizon.org/contribute/activity_pub/#maximumattendeecapacity)
|
||||
- [`mentions`](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-mentions)
|
||||
- `metadata`: This is a list that can contain items. TODO.
|
||||
- `participantCount`: [Not parsed at the moment](https://framagit.org/framasoft/mobilizon/-/issues/1412)
|
||||
- [`repliesModerationOption`](https://docs.joinmobilizon.org/contribute/activity_pub/#repliesModerationOption)
|
||||
- `remainingAttendeeCapacity`: [Not parsed at the moment](https://framagit.org/framasoft/mobilizon/-/issues/1412)
|
||||
- [`startTime`](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-startTime)
|
||||
- [`tag`](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tag)
|
||||
- `timezone`
|
||||
- `url`: [Documentation](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-url) - Note: `url` was added to the list as it was referenced in the text but not explicitly listed in the initial set.
|
||||
|
||||
|
||||
- [`content`](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-content): `contentMap` is currently not supported by Mobilizon.
|
||||
- [`location`](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-location): The subkey [`address`](https://schema.org/address) is accepted, both as [`PostalAddress`](https://schema.org/PostalAddress) and pure text.
|
||||
- [`mentions`](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-mentions)
|
||||
|
@ -34,7 +56,7 @@ It neglets all event related fields but `title`, `summary` and `url` which it us
|
|||
- `remainingAttendeeCapacity`: [Not parsed at the moment](https://framagit.org/framasoft/mobilizon/-/issues/1412)
|
||||
- `participantCount`: [Not parsed at the moment](https://framagit.org/framasoft/mobilizon/-/issues/1412)
|
||||
- `is_online` boolean whether the Event is online.
|
||||
- `timezone`
|
||||
- `timezone`: e.g., `Europe/Vienna`. Not documented yet, see the handling below.
|
||||
- `metadata`: This is a list which can contain items. TODO.
|
||||
- `contacts`: a list of contacts: each item might be just the `id`/`url` or an `Actor` object.
|
||||
- `category`: default list of categories can be found [in the source code](https://framagit.org/framasoft/mobilizon/-/blob/main/lib/mobilizon/events/categories.ex?ref_type=heads#L28), but it can be extended via environment variables. Note that the source code shows them in lowercase, but they have to be passed as uppercase, e.g. `MOVEMENTS_POLITICS`.
|
||||
|
|
Loading…
Reference in a new issue