mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:02:54 +00:00
Add Mastodon Instance::V2 Friendica extension documentation
This commit is contained in:
parent
811d57cb6d
commit
7b6cb7bcf2
1 changed files with 22 additions and 0 deletions
|
@ -31,6 +31,28 @@ For supported apps please have a look at the [FAQ](help/FAQ#clients)
|
||||||
|
|
||||||
These endpoints use the [Mastodon API entities](https://docs.joinmastodon.org/entities/). With some additional extensions listed below.
|
These endpoints use the [Mastodon API entities](https://docs.joinmastodon.org/entities/). With some additional extensions listed below.
|
||||||
|
|
||||||
|
### Instance (Version 2) Entities
|
||||||
|
Extensions to the [Mastodon Instance::V2 Entities](https://docs.joinmastodon.org/entities/Instance/)
|
||||||
|
* `friendica`: Friendica specific properties of the V2 Instance including:
|
||||||
|
* `version`: The Friendica version string
|
||||||
|
* `codename`: The Friendica version code name
|
||||||
|
* `db_version`: The database schema version number
|
||||||
|
|
||||||
|
Example:
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"domain": "friendicadevtest1.myportal.social",
|
||||||
|
"title": "Friendica Social Network",
|
||||||
|
"version": "2.8.0 (compatible; Friendica 2023.03-dev)",
|
||||||
|
...
|
||||||
|
"friendica": {
|
||||||
|
"version": "2023.03-dev",
|
||||||
|
"codename": "Giant Rhubarb",
|
||||||
|
"db_version": 1516
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
### Notification Entities
|
### Notification Entities
|
||||||
Extensions to the [Mastodon Notification Entities](https://docs.joinmastodon.org/entities/Notification/)
|
Extensions to the [Mastodon Notification Entities](https://docs.joinmastodon.org/entities/Notification/)
|
||||||
* `dismissed`: whether the object has been dismissed or not
|
* `dismissed`: whether the object has been dismissed or not
|
||||||
|
|
Loading…
Reference in a new issue