Module: RedboothRuby::Operations::Base::ClassMethods
- Includes:
- Helpers
- Defined in:
- lib/redbooth-ruby/operations/base.rb
Instance Method Summary collapse
-
#options_for_request(attributes) ⇒ Hash
Options for request overwrite this in the model to set security.
Methods included from Helpers
Instance Method Details
#options_for_request(attributes) ⇒ Hash
Options for request overwrite this in the model to set security
10 11 12 13 14 15 |
# File 'lib/redbooth-ruby/operations/base.rb', line 10 def (attributes) fail AuthenticationError unless attributes[:session] { session: attributes[:session] } end |