Flowdock
method

add_interception_conditions

Importance_0
v1.2.6 - Show latest stable - 0 notes - Class: ActionWebService::Invocation::ClassMethods
add_interception_conditions(interceptors, conditions) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionwebservice/lib/action_web_service/invocation.rb, line 114
        def add_interception_conditions(interceptors, conditions)
          return unless conditions
          included, excluded = conditions[:only], conditions[:except]
          write_inheritable_hash("included_intercepted_methods", condition_hash(interceptors, included)) && return if included
          write_inheritable_hash("excluded_intercepted_methods", condition_hash(interceptors, excluded)) if excluded
        end
Register or log in to add new notes.