Files
sx-fc/app/controllers/api/api_controller.rb
2017-04-14 23:22:58 +06:30

14 lines
360 B
Ruby

class Api::ApiController < ActionController::API
include TokenVerification
helper_method :current_token
#this is base api base controller to need to inherit.
#all token authentication must be done here
#response format must be set to JSON
def current_token
authenticate_with_http_token do |token, options|
return token
end
end
end