diff options
author | Aorimn <aorimn@gmail.com> | 2015-02-04 21:31:55 +0100 |
---|---|---|
committer | Aorimn <aorimn@gmail.com> | 2015-03-01 20:51:03 +0100 |
commit | f84b7eef3f969a65d0930c9d62b6968b2ae70f12 (patch) | |
tree | e365fd8d4fff95ebeb809796726fe70fafe75004 /app/models/service.rb | |
parent | 4e5bc1d5356e860be316656fd8c3393c468d24b6 (diff) | |
download | gitlab-ce-f84b7eef3f969a65d0930c9d62b6968b2ae70f12.tar.gz |
Add Irker service
Irker is a gateway which sends IRC messages on git updates. This new
service provides an interface to this gateway, integrated in Gitlab, for
each updates.
As per the guidelines, this commit adds the new feature in the
CHANGELOG, tests and documentation.
See http://www.catb.org/esr/irker/
Diffstat (limited to 'app/models/service.rb')
-rw-r--r-- | app/models/service.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/models/service.rb b/app/models/service.rb index f87d875c10a..f4e97da3212 100644 --- a/app/models/service.rb +++ b/app/models/service.rb @@ -100,7 +100,8 @@ class Service < ActiveRecord::Base def self.available_services_names %w(gitlab_ci campfire hipchat pivotaltracker flowdock assembla asana - emails_on_push gemnasium slack pushover buildbox bamboo teamcity jira redmine custom_issue_tracker) + emails_on_push gemnasium slack pushover buildbox bamboo teamcity jira + redmine custom_issue_tracker irker) end def self.create_from_template(project_id, template) |