Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bugzilla_service.rb « project_services « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d1c56d2a4d5bcfc739889f049cec446db63f3c75 (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
# frozen_string_literal: true

class BugzillaService < IssueTrackerService
  include ActionView::Helpers::UrlHelper

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

  def title
    'Bugzilla'
  end

  def description
    s_("IssueTracker|Use Bugzilla as this project's issue tracker.")
  end

  def help
    docs_link = link_to _('Learn more.'), Rails.application.routes.url_helpers.help_page_url('user/project/integrations/bugzilla'), target: '_blank', rel: 'noopener noreferrer'
    s_("IssueTracker|Use Bugzilla as this project's issue tracker. %{docs_link}").html_safe % { docs_link: docs_link.html_safe }
  end

  def self.to_param
    'bugzilla'
  end
end