docs: added some readme about ap and as folders

This commit is contained in:
əlemi 2024-03-21 20:37:16 +01:00
parent c2f3224e0e
commit d127385310
Signed by: alemi
GPG key ID: A4895B84D311642C
2 changed files with 65 additions and 0 deletions

View file

@ -0,0 +1,3 @@
# activitypub
here live the core ActvityPub routes for this application, such as views, inboxes and outboxes

View file

@ -0,0 +1,62 @@
# activitystream
here live all ActivityStreams types
### structure
```
├── Link
│ └── Mention
├── Object
│ ├── Activity
│ │ ├── Accept
│ │ │ └── TentativeAccept
│ │ ├── Add
│ │ ├── Announce
│ │ ├── Create
│ │ ├── Delete
│ │ ├── Dislike
│ │ ├── Flag
│ │ ├── Follow
│ │ ├── IntransitiveActivity
│ │ │ ├── Arrive
│ │ │ ├── Question
│ │ │ └── Travel
│ │ ├── Ignore
│ │ │ └── Block
│ │ ├── Join
│ │ ├── Leave
│ │ ├── Like
│ │ ├── Listen
│ │ ├── Move
│ │ ├── Offer
│ │ │ └── Invite
│ │ ├── Read
│ │ ├── Reject
│ │ │ └── TentativeReject
│ │ ├── Remove
│ │ ├── Undo
│ │ ├── Update
│ │ └── View
│ ├── Actor (not technically)
│ │ ├── Application
│ │ ├── Group
│ │ ├── Organization
│ │ └── Person
│ ├── Article
│ ├── Collection
│ │ ├── CollectionPage
│ │ └── OrderedCollection
│ │ └── OrderedCollectionPage
│ ├── Document
│ │ ├── Audio
│ │ ├── Image
│ │ ├── Page
│ │ └── Video
│ ├── Event
│ ├── Note
│ ├── Place
│ ├── Profile
│ ├── Relationship
│ └── Tombstone
└── PublicKey (not in spec)
```