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

14 lines
187 B
Ruby

module Api
class BaseController < ApplicationController
skip_before_filter :verify_authenticity_token
private
def warden_strategies
[:api_token]
end
end
end