mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 04:05:42 +01:00
add activity sequence
This commit is contained in:
parent
68318f2632
commit
643681663f
1 changed files with 22 additions and 0 deletions
22
docs/unsure-where-to-put/star_activity.md
Normal file
22
docs/unsure-where-to-put/star_activity.md
Normal file
|
@ -0,0 +1,22 @@
|
|||
```mermaid
|
||||
sequenceDiagram
|
||||
participant fs as foreign_repository_server
|
||||
participant os as our_repository_server
|
||||
|
||||
fs ->> os: post /api/activitypub/repository-id/1/inbox {Start-Activity}
|
||||
activate os
|
||||
os ->> os: validate request inputs
|
||||
activate repository
|
||||
os ->> repository: validate
|
||||
repository ->> repository: search for reop with object-id
|
||||
deactivate repository
|
||||
activate person
|
||||
os ->> person: validate
|
||||
person ->> person: search for ser with actor-id
|
||||
person ->> fs: get /api/activitypub/user-id/{id from actor}
|
||||
person ->> person: create user from response
|
||||
deactivate person
|
||||
os ->> repository: execute star action
|
||||
os -->> fs: 200 ok
|
||||
deactivate os
|
||||
```
|
Loading…
Reference in a new issue