This repository has been archived by the owner on Nov 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update documentation and update links
- Loading branch information
1 parent
cb5876d
commit bf92ab6
Showing
7 changed files
with
155 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# All Known features | ||
|
||
This includes every feature that is explicitly added by the current API. | ||
|
||
- Sending, editing, and deleting: | ||
- posts | ||
- chats | ||
|
||
- User accounts | ||
- Logging in | ||
- Signing up | ||
- Post/user reporting | ||
- [Chats](./objects/chat.md): | ||
- Chat creation | ||
- Chat member management | ||
- Chat message pinning | ||
- Multifactor Authentication. | ||
- Home page | ||
- Quotes (used a bio typically) | ||
- Post reactions | ||
- Post replies | ||
- Profile pictures | ||
- Searching users | ||
- Searching posts | ||
- Blocking users | ||
- Direct Messaging Users | ||
- Typing indicators | ||
- Inbox messages | ||
- Searching Posts and Users | ||
- Uploading (images, videos, etc) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Emoji | ||
|
||
### Structure | ||
|
||
<!-- deno-fmt-ignore-start --> | ||
|
||
| Field | Type | Description | | ||
| - | - | - | | ||
| _id | string | The emoji's UUID4. | | ||
| animated | boolean | Whether the emoji is animated. | | ||
| chat_id | UUID4 | The chat's UUID4. | | ||
| name | string | The emoji's name. | | ||
|
||
<!-- deno-fmt-ignore-end --> | ||
|
||
### Examples | ||
|
||
```json | ||
{ | ||
"_id": "CNqjEMFlMYlS66VjDQ3u8z07", | ||
"animated": false, | ||
"chat_id": "ee754b92-da8a-483a-9601-bf44b9bff531", | ||
"name": "ban" | ||
} | ||
``` |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters