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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/integrations/issue_service.rb')
-rw-r--r--app/services/integrations/issue_service.rb11
1 files changed, 3 insertions, 8 deletions
diff --git a/app/services/integrations/issue_service.rb b/app/services/integrations/issue_service.rb
index b00901afe3d..d1f53314dd4 100644
--- a/app/services/integrations/issue_service.rb
+++ b/app/services/integrations/issue_service.rb
@@ -1,14 +1,9 @@
module Integrations
- class IssueService < BaseService
-
+ class IssueService < Integrations::BaseService
private
- def klass
- Issue
- end
-
- def title(issue)
- format("##{issue.iid} #{issue.title}")
+ def collection
+ project.issues
end
def link(issue)