Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kitallis committed Sep 16, 2024
1 parent 14b0921 commit eeb13e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/pre_prod_release.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class PreProdRelease < ApplicationRecord
belongs_to :commit
has_one :next, class_name: "PreProdRelease", inverse_of: :previous, dependent: :nullify
has_one :triggered_workflow_run, class_name: "WorkflowRun", dependent: :destroy, inverse_of: :triggering_release
has_many :store_submissions, -> { sequential }, as: :parent_release, dependent: :destroy
has_many :store_submissions, -> { sequential }, as: :parent_release, dependent: :destroy, inverse_of: :parent_release

scope :inactive, -> { where(status: INACTIVE) }

Expand Down

0 comments on commit eeb13e2

Please sign in to comment.