21 lines
284 B
Ruby
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
|