summaryrefslogtreecommitdiff
path: root/app/models/notification.rb
blob: ff6a18d6a5148d84535a7432531e83aae2ad6789 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
class Notification
  #
  # Notification levels
  #
  N_DISABLED = 0
  N_PARTICIPATING = 1
  N_WATCH = 2
  N_GLOBAL = 3

  attr_accessor :target

  def self.notification_levels
    [N_DISABLED, N_PARTICIPATING, N_WATCH]
  end

  def self.project_notification_levels
    [N_DISABLED, N_PARTICIPATING, N_WATCH, N_GLOBAL]
  end

  def initialize(target)
    @target = target
  end

  def disabled?
    target.notification_level == N_DISABLED
  end

  def participating?
    target.notification_level == N_PARTICIPATING
  end

  def watch?
    target.notification_level == N_WATCH
  end

  def global?
    target.notification_level == N_GLOBAL
  end
end