diff --git a/src/activitypub/README.md b/src/activitypub/README.md new file mode 100644 index 00000000..64715794 --- /dev/null +++ b/src/activitypub/README.md @@ -0,0 +1,3 @@ +# activitypub + +here live the core ActvityPub routes for this application, such as views, inboxes and outboxes diff --git a/src/activitystream/README.md b/src/activitystream/README.md new file mode 100644 index 00000000..5b1abd4b --- /dev/null +++ b/src/activitystream/README.md @@ -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) +```