summaryrefslogtreecommitdiff
path: root/app/models/ci
diff options
context:
space:
mode:
authorRobert Speicher <robert@gitlab.com>2016-08-25 18:49:03 +0000
committerRobert Speicher <robert@gitlab.com>2016-08-25 18:49:03 +0000
commit34a472f674fa0d26deea1b248b54a44354f889ba (patch)
treed70a6369a22c89c6a9f92963898adb76b2cc4e89 /app/models/ci
parent1cc59ffec6f9c255edc48348a95f030917609122 (diff)
parent23bed91b3fb21a92b836011677cc75c884188f10 (diff)
downloadgitlab-ce-34a472f674fa0d26deea1b248b54a44354f889ba.tar.gz
Merge branch 'statuseable-hasstatus' into 'master'
rename Statuseable to HasStatus ## What does this MR do? - Rename all instances of Statuseable in the codebase, to HasStatus - Rename all files from statuseable to has_status ## What are the relevant issue numbers? Closes #21103 See merge request !6003
Diffstat (limited to 'app/models/ci')
-rw-r--r--app/models/ci/pipeline.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/ci/pipeline.rb b/app/models/ci/pipeline.rb
index aff908ea16c..03812cd195f 100644
--- a/app/models/ci/pipeline.rb
+++ b/app/models/ci/pipeline.rb
@@ -1,7 +1,7 @@
module Ci
class Pipeline < ActiveRecord::Base
extend Ci::Model
- include Statuseable
+ include HasStatus
self.table_name = 'ci_commits'