diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2015-10-12 21:12:31 +0200 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2015-10-14 17:29:18 +0200 |
commit | 7af4f5215e28927830cbc74d383cdfeb9e4ef587 (patch) | |
tree | 1a318a590e96153ebb1a843538dd70279e098c2a /app/models/commit_status.rb | |
parent | 2d0fcb4de23ab368e2e030b3cf7f6b1705ef676f (diff) | |
download | gitlab-ce-7af4f5215e28927830cbc74d383cdfeb9e4ef587.tar.gz |
Show warning if build doesn't have runners with specified tags or runners didn't connect recently
Slightly refactor runner status detection: moving it to Runner class
Signed-off-by: Kamil Trzcinski <ayufan@ayufan.eu>
Diffstat (limited to 'app/models/commit_status.rb')
-rw-r--r-- | app/models/commit_status.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/models/commit_status.rb b/app/models/commit_status.rb index b4d91b1b0c3..92905c618eb 100644 --- a/app/models/commit_status.rb +++ b/app/models/commit_status.rb @@ -88,4 +88,8 @@ class CommitStatus < ActiveRecord::Base def retry_url nil end + + def show_warning? + false + end end |