Method: Jets::Controller::Base.authorization_type

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

.authorization_type(value = nil) ⇒ Object



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

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