debian-mirror-gitlab/app/models/operations/feature_flags/scope.rb
2020-11-24 15:15:51 +05:30

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