gitlab-org--gitlab-foss/app/policies/terraform/state_policy.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
177 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Terraform
class StatePolicy < BasePolicy
alias_method :terraform_state, :subject
delegate { terraform_state.project }
end
end