Add REST API for Web Push Notifications subscriptions (#7445)
- POST /api/v1/push/subscription - PUT /api/v1/push/subscription - DELETE /api/v1/push/subscription - New OAuth scope: "push" (required for the above methods)
This commit is contained in:
parent
9a794067f7
commit
b4fb766b23
20 changed files with 258 additions and 81 deletions
|
@ -0,0 +1,6 @@
|
|||
class AddAccessTokenIdToWebPushSubscriptions < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
add_reference :web_push_subscriptions, :access_token, null: true, default: nil, foreign_key: { on_delete: :cascade, to_table: :oauth_access_tokens }, index: false
|
||||
add_reference :web_push_subscriptions, :user, null: true, default: nil, foreign_key: { on_delete: :cascade }, index: false
|
||||
end
|
||||
end
|
13
db/migrate/20180510230049_migrate_web_push_subscriptions.rb
Normal file
13
db/migrate/20180510230049_migrate_web_push_subscriptions.rb
Normal file
|
@ -0,0 +1,13 @@
|
|||
class MigrateWebPushSubscriptions < ActiveRecord::Migration[5.2]
|
||||
disable_ddl_transaction!
|
||||
|
||||
def up
|
||||
add_index :web_push_subscriptions, :user_id, algorithm: :concurrently
|
||||
add_index :web_push_subscriptions, :access_token_id, algorithm: :concurrently
|
||||
end
|
||||
|
||||
def down
|
||||
remove_index :web_push_subscriptions, :user_id
|
||||
remove_index :web_push_subscriptions, :access_token_id
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue