Add ToDos

This commit is contained in:
erik 2023-11-14 15:29:13 +01:00 committed by Michael Jerger
parent d2b464582f
commit d7abff31f6

View file

@ -897,11 +897,11 @@ func Routes() *web.Route {
}, context_service.UserIDAssignmentAPI())
m.Group("/repository-id/{repository-id}", func() {
m.Get("", activitypub.Repository)
m.Post("/inbox",
m.Post("/inbox", // ToDo: We may want a m.Patch method here, as we are not replacing stars
// TODO: bind ativities here
bind(forgefed.Star{}),
//activitypub.ReqHTTPSignature(),
activitypub.RepositoryInbox)
activitypub.RepositoryInbox) // ToDo: We may need to use another method to add a star to the repo
}, context_service.RepositoryIDAssignmentAPI())
}, tokenRequiresScopes(auth_model.AccessTokenScopeCategoryActivityPub))
}