Add status badge for MR

This commit is contained in:
Dmitriy Zaporozhets 2012-11-20 20:34:05 +03:00
parent ed92cfdebd
commit ebcbe0c87b
5 changed files with 20 additions and 0 deletions

View file

@ -32,4 +32,8 @@ class GitlabCiService < Service
hook.url = [project_url, "/build", "?token=#{token}"].join("")
hook.save
end
def commit_badge_path sha
project_url + "/status?sha=#{sha}"
end
end

View file

@ -188,4 +188,8 @@ class Project < ActiveRecord::Base
def services
[gitlab_ci_service].compact
end
def gitlab_ci?
gitlab_ci_service && gitlab_ci_service.active
end
end