diff options
author | ThibG <thib@sitedethib.com> | 2019-03-13 19:29:54 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2019-03-13 19:29:54 +0100 |
commit | 65d9004ac90209a035e2f103e271986ff8650410 (patch) | |
tree | c6a19589c6ed6a47502c0779f1dc6bf04a604ef0 /app/models | |
parent | c6f018091e10aa28bd93d6439aaa571e71f99bea (diff) |
Add UI for enabling/disabling poll notifications (#10255)
* Add UI for enabling/disabling poll notifications * Add poll notifications to the (advanced) quick filter bar * Update poll notification message “Your poll has ended” → “A poll you have voted in has ended” * Clear up associated notifications when a poll is deleted
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/poll.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/models/poll.rb b/app/models/poll.rb index 09f0b65ec..6df230337 100644 --- a/app/models/poll.rb +++ b/app/models/poll.rb @@ -26,6 +26,8 @@ class Poll < ApplicationRecord has_many :votes, class_name: 'PollVote', inverse_of: :poll, dependent: :destroy + has_many :notifications, as: :activity, dependent: :destroy + validates :options, presence: true validates :expires_at, presence: true, if: :local? validates_with PollValidator, on: :create, if: :local? |