diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-28 18:45:13 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-28 18:45:13 +0100 |
commit | 27fc49d74546d689307e1e712e0b46ccce98867b (patch) | |
tree | d7eca67f2a322d656c22fced15e722e7b46f2da3 /config | |
parent | 7e5e33df48e507e18a226edc8dfecbf554d38647 (diff) |
Add simple admin overview of PuSH subscriptions
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb index 5c6568298..cd544a62b 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -44,6 +44,10 @@ Rails.application.routes.draw do resources :media, only: [:show] resources :tags, only: [:show] + namespace :admin do + resources :pubsubhubbub, only: [:index] + end + namespace :api do # PubSubHubbub outgoing subscriptions resources :subscriptions, only: [:show] |