diff options
author | David Yip <yipdw@member.fsf.org> | 2018-05-14 14:14:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-14 14:14:00 -0500 |
commit | b5684e987484661ba63fc9815c03667a8a93586e (patch) | |
tree | 755476fb27484fb36bd01578f8f22d4dd8d64562 /app/controllers/api | |
parent | 46659655439e7d76726aa38ed5d599a795b3790f (diff) | |
parent | ba7ee67498905cbc96d531d45a80e284880e09ee (diff) |
Merge pull request #481 from ThibG/glitch-soc/merge
Merge upstream changes
Diffstat (limited to 'app/controllers/api')
-rw-r--r-- | app/controllers/api/v1/push/subscriptions_controller.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/controllers/api/v1/push/subscriptions_controller.rb b/app/controllers/api/v1/push/subscriptions_controller.rb index 5038cc03c..1a19bd0ef 100644 --- a/app/controllers/api/v1/push/subscriptions_controller.rb +++ b/app/controllers/api/v1/push/subscriptions_controller.rb @@ -20,6 +20,12 @@ class Api::V1::Push::SubscriptionsController < Api::BaseController render json: @web_subscription, serializer: REST::WebPushSubscriptionSerializer end + def show + raise ActiveRecord::RecordNotFound if @web_subscription.nil? + + render json: @web_subscription, serializer: REST::WebPushSubscriptionSerializer + end + def update raise ActiveRecord::RecordNotFound if @web_subscription.nil? |