debian-mirror-gitlab/app/models/external_issue.rb

41 lines
642 B
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
class ExternalIssue
2015-09-11 14:41:01 +05:30
include Referable
2015-04-26 12:48:37 +05:30
def initialize(issue_identifier, project)
@issue_identifier, @project = issue_identifier, project
end
def to_s
@issue_identifier.to_s
end
def id
@issue_identifier.to_s
end
def iid
@issue_identifier.to_s
end
2015-09-11 14:41:01 +05:30
def title
"External Issue #{self}"
end
2015-04-26 12:48:37 +05:30
def ==(other)
other.is_a?(self.class) && (to_s == other.to_s)
end
def project
@project
end
2015-09-11 14:41:01 +05:30
# Pattern used to extract `JIRA-123` issue references from text
def self.reference_pattern
2016-04-02 18:10:28 +05:30
%r{(?<issue>\b([A-Z][A-Z0-9_]+-)\d+)}
2015-09-11 14:41:01 +05:30
end
def to_reference(_from_project = nil)
id
end
2015-04-26 12:48:37 +05:30
end