summaryrefslogtreecommitdiff
path: root/app/models/project_services/gitlab_issue_tracker_service.rb
blob: 51032932eabed5cda89057bda846b9eea240ee56 (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
40
41
42
43
44
45
46
47
# frozen_string_literal: true

class GitlabIssueTrackerService < IssueTrackerService
  include Gitlab::Routing

  validates :project_url, :issues_url, :new_issue_url, presence: true, public_url: true, if: :activated?

  prop_accessor :project_url, :issues_url, :new_issue_url

  default_value_for :default, true

  def default_title
    'GitLab'
  end

  def default_description
    s_('IssueTracker|GitLab issue tracker')
  end

  def self.to_param
    'gitlab'
  end

  def project_url
    project_issues_url(project)
  end

  def new_issue_url
    new_project_issue_url(project)
  end

  def issue_url(iid)
    project_issue_url(project, id: iid)
  end

  def issue_tracker_path
    project_issues_path(project)
  end

  def new_issue_path
    new_project_issue_path(project)
  end

  def issue_path(iid)
    project_issue_path(project, id: iid)
  end
end