Flowdock
method

raise_invalid_scope_type!

Importance_0
v4.2.1 - Show latest stable - 0 notes - Class: ScopeRegistry
raise_invalid_scope_type!(scope_type) private

No documentation

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

Hide source
# File activerecord/lib/active_record/scoping.rb, line 80
      def raise_invalid_scope_type!(scope_type)
        if !VALID_SCOPE_TYPES.include?(scope_type)
          raise ArgumentError, "Invalid scope type '#{scope_type}' sent to the registry. Scope types must be included in VALID_SCOPE_TYPES"
        end
      end
Register or log in to add new notes.