Skip to content
Snippets Groups Projects
Unverified Commit 416f6445 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Fix 404 for GET /api/v1/push/subscription (#7472)

My bad...
parent 97e43ec5
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,8 @@ class Api::V1::Push::SubscriptionsController < Api::BaseController
end
def show
raise ActiveRecord::RecordNotFound if @web_subscription.nil?
render json: @web_subscription, serializer: REST::WebPushSubscriptionSerializer
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment