gitlab-org--gitlab-foss/app/models/operations/feature_flags/scope.rb

14 lines
282 B
Ruby

# frozen_string_literal: true
module Operations
module FeatureFlags
class Scope < ApplicationRecord
prepend HasEnvironmentScope
self.table_name = 'operations_scopes'
belongs_to :strategy, class_name: 'Operations::FeatureFlags::Strategy'
end
end
end