2
0

Add support for standard webpush (#33528)

Co-authored-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
S1m
2025-01-14 10:14:00 +01:00
committed by GitHub
parent ee4edbb94f
commit 4a2813158d
12 changed files with 167 additions and 46 deletions

View File

@@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddStandardToPushSubscription < ActiveRecord::Migration[8.0]
def change
add_column :web_push_subscriptions, :standard, :boolean, null: false, default: false
end
end