Files
old-holivud2/lib/knock_monkeypatch.rb
2020-08-06 16:56:40 +00:00

7 lines
201 B
Ruby

module Knock
class AuthTokenController < ApplicationController
skip_before_action :authenticate
alias authenticate_with_token authenticate
before_action :authenticate_with_token
end
end