Compare commits
No commits in common. "e69f53bbd7128a4634dba8061681a93fabb8da77" and "ae33de8e2d816335e5af6cc462f5bae0048f1e53" have entirely different histories.
e69f53bbd7
...
ae33de8e2d
5 changed files with 1 additions and 10 deletions
|
@ -13,10 +13,6 @@ type UserToUserRelation struct {
|
|||
}
|
||||
|
||||
type IUserToUserRelation interface {
|
||||
// FIXME: Include local users in these queries
|
||||
// Currently local users don't have an entry in user_remote_links
|
||||
// causing them to be ignored by these functions as of now
|
||||
|
||||
// Get all inbox links for accounts following the user with the specified id
|
||||
//
|
||||
// SELECT u.inbox_link
|
||||
|
|
|
@ -16,6 +16,5 @@ func BuildActivitypubRouter() http.Handler {
|
|||
router.HandleFunc("/activity/reject/{id}", activityReject)
|
||||
router.HandleFunc("/activity/update/{id}", activityUpdate)
|
||||
router.HandleFunc("/note/{id}", objectNote)
|
||||
router.HandleFunc("/note/{id}/reactions", noteReactions)
|
||||
return router
|
||||
}
|
||||
|
|
1
web/public/api/activitypub/actor.go
Normal file
1
web/public/api/activitypub/actor.go
Normal file
|
@ -0,0 +1 @@
|
|||
package activitypub
|
|
@ -1,5 +0,0 @@
|
|||
package activitypub
|
||||
|
||||
import "net/http"
|
||||
|
||||
func noteReactions(w http.ResponseWriter, r *http.Request) {}
|
Loading…
Reference in a new issue