Add GET /api/v1/push/subscription REST API (#7471)
* Add Api::V1::Push::SubscriptionsController#show * Add to routes
This commit is contained in:
parent
f31e58af9e
commit
97e43ec5f0
2 changed files with 5 additions and 1 deletions
|
@ -20,6 +20,10 @@ class Api::V1::Push::SubscriptionsController < Api::BaseController
|
|||
render json: @web_subscription, serializer: REST::WebPushSubscriptionSerializer
|
||||
end
|
||||
|
||||
def show
|
||||
render json: @web_subscription, serializer: REST::WebPushSubscriptionSerializer
|
||||
end
|
||||
|
||||
def update
|
||||
raise ActiveRecord::RecordNotFound if @web_subscription.nil?
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue