Method: Jets::Controller::Base.authorization_type

Defined in:
lib/jets/controller/base.rb

.authorization_type(value = nil) ⇒ Object



100
101
102
103
104
105
106
# File 'lib/jets/controller/base.rb', line 100

def self.authorization_type(value=nil)
  if !value.nil?
    self.auth_type = value
  else
    self.auth_type
  end
end