You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/app/controllers/api/base_controller.rb

21 lines
284 B
Ruby

require 'authentication/warden_authentication'
module Api
class BaseController < ActionController::Base
include WardenAuthentication
include RouteHelper
private
def warden_scope
:api
end
def warden_strategies
[:api_token]
end
end
end