Duplicate opened scope for issue
Was it correct?
This commit is contained in:
parent
26c8b31634
commit
984eb08cbe
1 changed files with 1 additions and 4 deletions
|
@ -28,7 +28,7 @@ class Issue < ActiveRecord::Base
|
||||||
|
|
||||||
scope :of_group, ->(group) { where(project_id: group.project_ids) }
|
scope :of_group, ->(group) { where(project_id: group.project_ids) }
|
||||||
scope :of_user_team, ->(team) { where(project_id: team.project_ids, assignee_id: team.member_ids) }
|
scope :of_user_team, ->(team) { where(project_id: team.project_ids, assignee_id: team.member_ids) }
|
||||||
scope :opened, -> { with_state(:opened) }
|
scope :opened, -> { with_state(:opened, :reopened) }
|
||||||
scope :closed, -> { with_state(:closed) }
|
scope :closed, -> { with_state(:closed) }
|
||||||
|
|
||||||
attr_accessible :title, :assignee_id, :position, :description,
|
attr_accessible :title, :assignee_id, :position, :description,
|
||||||
|
@ -56,9 +56,6 @@ class Issue < ActiveRecord::Base
|
||||||
state :closed
|
state :closed
|
||||||
end
|
end
|
||||||
|
|
||||||
# Both open and reopened issues should be listed as opened
|
|
||||||
scope :opened, -> { with_state(:opened, :reopened) }
|
|
||||||
|
|
||||||
# Mentionable overrides.
|
# Mentionable overrides.
|
||||||
|
|
||||||
def gfm_reference
|
def gfm_reference
|
||||||
|
|
Loading…
Reference in a new issue