diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-03-03 10:24:59 +0100 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-03-06 10:04:04 +0100 |
commit | 14351f97672a79a54b4431472506b67577818ddf (patch) | |
tree | 5af6725575672cc91f147510f722008a4345b753 /lib | |
parent | b8dc2ab93f415f4ffb3cd2e16ea629b62723bba6 (diff) | |
download | gitlab-ce-14351f97672a79a54b4431472506b67577818ddf.tar.gz |
Introduce core status for blocked manual actions
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/ci/status/blocked.rb (renamed from lib/gitlab/ci/status/manual.rb) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/gitlab/ci/status/manual.rb b/lib/gitlab/ci/status/blocked.rb index 741b3dd96e9..d17f4ea77b9 100644 --- a/lib/gitlab/ci/status/manual.rb +++ b/lib/gitlab/ci/status/blocked.rb @@ -1,13 +1,13 @@ module Gitlab module Ci module Status - class Manual < Status::Core + class Blocked < Status::Core def text - 'manual' + 'blocked' end def label - 'manual' + 'blocked action' end def icon |