Compare commits

..

No commits in common. "e69f53bbd7128a4634dba8061681a93fabb8da77" and "ae33de8e2d816335e5af6cc462f5bae0048f1e53" have entirely different histories.

5 changed files with 1 additions and 10 deletions

View file

@ -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

View file

@ -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
}

View file

@ -0,0 +1 @@
package activitypub

View file

@ -1,5 +0,0 @@
package activitypub
import "net/http"
func noteReactions(w http.ResponseWriter, r *http.Request) {}