debian-mirror-gitlab/app/models/project_services/redmine_service.rb

26 lines
585 B
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
class RedmineService < IssueTrackerService
2017-08-17 22:00:37 +05:30
validates :project_url, :issues_url, :new_issue_url, presence: true, url: true, if: :activated?
2015-04-26 12:48:37 +05:30
prop_accessor :title, :description, :project_url, :issues_url, :new_issue_url
def title
if self.properties && self.properties['title'].present?
self.properties['title']
else
'Redmine'
end
end
def description
if self.properties && self.properties['description'].present?
self.properties['description']
else
'Redmine issue tracker'
end
end
2017-08-17 22:00:37 +05:30
def self.to_param
2015-04-26 12:48:37 +05:30
'redmine'
end
end