Sha256: 75614c043de16750d50f91e1706b0658c769caf2c0584b13d735123f9c99d405

Contents?: true

Size: 1.15 KB

Versions: 54

Compression:

Stored size: 1.15 KB

Contents

require 'flipper/api/action'
require 'flipper/api/v1/decorators/feature'

module Flipper
  module Api
    module V1
      module Actions
        class ActorsGate < Api::Action
          include FeatureNameFromRoute

          route %r{\A/features/(?<feature_name>.*)/actors/?\Z}

          def post
            ensure_valid_params
            feature = flipper[feature_name]
            actor = Actor.new(flipper_id)
            feature.enable_actor(actor)
            decorated_feature = Decorators::Feature.new(feature)
            json_response(decorated_feature.as_json, 200)
          end

          def delete
            ensure_valid_params
            feature = flipper[feature_name]
            actor = Actor.new(flipper_id)
            feature.disable_actor(actor)
            decorated_feature = Decorators::Feature.new(feature)
            json_response(decorated_feature.as_json, 200)
          end

          private

          def ensure_valid_params
            json_error_response(:flipper_id_invalid) if flipper_id.nil?
          end

          def flipper_id
            @flipper_id ||= params['flipper_id']
          end
        end
      end
    end
  end
end

Version data entries

54 entries across 54 versions & 1 rubygems

Version Path
flipper-api-0.20.2 lib/flipper/api/v1/actions/actors_gate.rb
flipper-api-0.20.1 lib/flipper/api/v1/actions/actors_gate.rb
flipper-api-0.20.0 lib/flipper/api/v1/actions/actors_gate.rb
flipper-api-0.20.0.beta3 lib/flipper/api/v1/actions/actors_gate.rb
flipper-api-0.20.0.beta2 lib/flipper/api/v1/actions/actors_gate.rb
flipper-api-0.20.0.beta1 lib/flipper/api/v1/actions/actors_gate.rb
flipper-api-0.19.1 lib/flipper/api/v1/actions/actors_gate.rb
flipper-api-0.19.0 lib/flipper/api/v1/actions/actors_gate.rb
flipper-api-0.18.0 lib/flipper/api/v1/actions/actors_gate.rb
flipper-api-0.17.2 lib/flipper/api/v1/actions/actors_gate.rb
flipper-api-0.17.1 lib/flipper/api/v1/actions/actors_gate.rb
flipper-api-0.16.2 lib/flipper/api/v1/actions/actors_gate.rb
flipper-api-0.16.1 lib/flipper/api/v1/actions/actors_gate.rb
flipper-api-0.16.0 lib/flipper/api/v1/actions/actors_gate.rb