Sha256: e7c6e59871cd3e61c66a975ac6a4f3c9f7398431eca038e84e4b1a503e32a9b8
Contents?: true
Size: 375 Bytes
Versions: 17
Compression:
Stored size: 375 Bytes
Contents
module Annex class ApplicationController < ::ApplicationController protect_from_forgery with: :null_session before_filter :annex_authenticate! before_filter :annex_authorize! def annex_authenticate! instance_eval &Annex::Config.authenticate_with end def annex_authorize! instance_eval &Annex::Config.authorize_with end end end
Version data entries
17 entries across 17 versions & 1 rubygems