diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-04-16 21:46:26 +0200 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-04-16 21:46:26 +0200 |
commit | 0b1655e7b2e2aa57cb7ea8401743d709bf246074 (patch) | |
tree | 0f2846f32aec86f3d44300649b0c77f179bec0c4 /app/models/ci/commit.rb | |
parent | 065e0c0fe4e5e16b90c01736721e4c794b71dac9 (diff) | |
download | gitlab-ce-0b1655e7b2e2aa57cb7ea8401743d709bf246074.tar.gz |
Rename CiStatus to Statusable
Diffstat (limited to 'app/models/ci/commit.rb')
-rw-r--r-- | app/models/ci/commit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/ci/commit.rb b/app/models/ci/commit.rb index ae30407bcae..412ab44aaf6 100644 --- a/app/models/ci/commit.rb +++ b/app/models/ci/commit.rb @@ -19,7 +19,7 @@ module Ci class Commit < ActiveRecord::Base extend Ci::Model - include CiStatus + include Statuseable belongs_to :project, class_name: '::Project', foreign_key: :gl_project_id has_many :statuses, class_name: 'CommitStatus' |