post("/pleroma/friendships/approve", TwitterAPI.Controller, :approve_friend_request)
post("/pleroma/friendships/deny", TwitterAPI.Controller, :deny_friend_request)
+ post("/pleroma/subscriptions/create", TwitterAPI.Controller, :subscribe)
+ post("/pleroma/subscriptions/destroy", TwitterAPI.Controller, :unsubscribe)
+
post("/friendships/create", TwitterAPI.Controller, :follow)
post("/friendships/destroy", TwitterAPI.Controller, :unfollow)
post("/blocks/create", TwitterAPI.Controller, :block)
post("/blocks/destroy", TwitterAPI.Controller, :unblock)
-
- post("/subscriptions/create", TwitterAPI.Controller, :subscribe)
- post("/subscriptions/destroy", TwitterAPI.Controller, :unsubscribe)
end
end