diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-05-13 21:07:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-13 21:07:31 +0200 |
commit | 97e43ec5f08aeafe0cb34a2e71e857f22c547f7a (patch) | |
tree | 3aebfc603a3d306692fe7b25746063d5797becac /config | |
parent | f31e58af9e6333f96248562cebfd215b6d32bcfc (diff) |
Add GET /api/v1/push/subscription REST API (#7471)
* Add Api::V1::Push::SubscriptionsController#show * Add to routes
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb index b7bd1a7ed..bd9d09226 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -308,7 +308,7 @@ Rails.application.routes.draw do end namespace :push do - resource :subscription, only: [:create, :update, :destroy] + resource :subscription, only: [:create, :show, :update, :destroy] end end |