2018-11-20 20:47:30 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
class BugzillaService < IssueTrackerService
|
2021-06-08 01:23:25 +05:30
|
|
|
include ActionView::Helpers::UrlHelper
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
validates :project_url, :issues_url, :new_issue_url, presence: true, public_url: true, if: :activated?
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
def title
|
2019-09-30 21:07:59 +05:30
|
|
|
'Bugzilla'
|
2016-08-24 12:49:21 +05:30
|
|
|
end
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
def description
|
2021-06-08 01:23:25 +05:30
|
|
|
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 }
|
2016-08-24 12:49:21 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def self.to_param
|
2016-08-24 12:49:21 +05:30
|
|
|
'bugzilla'
|
|
|
|
end
|
|
|
|
end
|