summaryrefslogtreecommitdiff
path: root/app/models/commit_status.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/commit_status.rb')
-rw-r--r--app/models/commit_status.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/app/models/commit_status.rb b/app/models/commit_status.rb
index afdc75f75fb..efb5cbd9d41 100644
--- a/app/models/commit_status.rb
+++ b/app/models/commit_status.rb
@@ -43,9 +43,7 @@ class CommitStatus < ActiveRecord::Base
# `ci_builds.stage` attribute and migrate `ci_builds.stage_id` reference in
# one of upcoming releases.
#
- def stage_entity
- Ci::Stage.find_by(pipeline: pipeline, name: stage)
- end
+ belongs_to :stage_entity, foreign_key: :stage_id, class_name: 'Ci::Stage'
state_machine :status do
event :enqueue do