Create migration for adding an rpush app for webpush

This commit is contained in:
Karina Kwiatek 2022-09-11 20:10:01 +02:00
parent 92ba2d7c9b
commit 4e08f035d1
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# frozen_string_literal: true
require "webpush"
class AddWebpushApp < ActiveRecord::Migration[6.1]
def up
vapid_keypair = Webpush.generate_key.to_hash
app = Rpush::Webpush::App.new
app.name = "webpush"
app.certificate = vapid_keypair.merge(subject: "user@example.com").to_json # TODO: put an email address here
app.connections = 1
app.save!
end
def down
Rpush::Webpush::App.find_by(name: "webpush").destroy!
end
end