diff options
author | eal <eal@waifu.club> | 2018-04-19 21:46:59 +0300 |
---|---|---|
committer | eal <eal@waifu.club> | 2018-04-19 21:46:59 +0300 |
commit | fa37acfcc75d069aaaea0b00e619f716e5d6a19a (patch) | |
tree | e10e5a098b641969da97ab95a4d4ef3d19787106 /lib/pleroma/web/router.ex | |
parent | 7b96a756fbcc6f814e70ad1b9ad6bd45844ea734 (diff) | |
download | pleroma-fa37acfcc75d069aaaea0b00e619f716e5d6a19a.tar.gz |
TwitterAPI: Add Qvitter notification endpoint.
Diffstat (limited to 'lib/pleroma/web/router.ex')
-rw-r--r-- | lib/pleroma/web/router.ex | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/pleroma/web/router.ex b/lib/pleroma/web/router.ex index 8ee27e63c..8f63fdc70 100644 --- a/lib/pleroma/web/router.ex +++ b/lib/pleroma/web/router.ex @@ -212,6 +212,7 @@ defmodule Pleroma.Web.Router do get("/statuses/friends_timeline", TwitterAPI.Controller, :friends_timeline) get("/statuses/mentions", TwitterAPI.Controller, :mentions_timeline) get("/statuses/mentions_timeline", TwitterAPI.Controller, :mentions_timeline) + get("/qvitter/statuses/notifications", TwitterAPI.Controller, :notifications) post("/statuses/update", TwitterAPI.Controller, :status_update) post("/statuses/retweet/:id", TwitterAPI.Controller, :retweet) |