2022-09-11 11:12:42 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Ajax::WebPushController < AjaxController
|
|
|
|
def key
|
|
|
|
certificate = Rpush::Webpush::App.find_by(name: "webpush").certificate
|
|
|
|
|
2022-10-20 10:02:12 -07:00
|
|
|
@response[:status] = :okay
|
|
|
|
@response[:success] = true
|
2022-09-11 11:12:42 -07:00
|
|
|
@response[:key] = JSON.parse(certificate)["public_key"]
|
|
|
|
end
|
|
|
|
|
|
|
|
def subscribe
|
|
|
|
WebPushSubscription.create!(
|
|
|
|
user: current_user,
|
|
|
|
subscription: params[:subscription]
|
|
|
|
)
|
|
|
|
|
|
|
|
@response[:status] = :okay
|
|
|
|
@response[:success] = true
|
|
|
|
end
|
|
|
|
end
|