feat: Snooze notification API (#8439)

This commit is contained in:
Muhsin Keloth
2023-12-04 12:32:35 +05:30
committed by GitHub
parent aad18e1ca4
commit 449503bb94
6 changed files with 46 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
class AddSnoozedUntilToNotifications < ActiveRecord::Migration[7.0]
def change
add_column :notifications, :snoozed_until, :datetime
end
end