Method: Jets::Controller::Base.authorization_type

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

.authorization_type(value = nil) ⇒ Object



94
95
96
97
98
99
100
# File 'lib/jets/controller/base.rb', line 94

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