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

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

10 lines
208 B
Ruby
Raw Normal View History

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