Module: Foyer::Controller::Helpers::ClassMethods

Defined in:
lib/foyer/controller/helpers.rb

Instance Method Summary collapse

Instance Method Details

#set_user_finder(&blk) ⇒ Object

rubocop:disable Style/AccessorMethodName



45
46
47
48
# File 'lib/foyer/controller/helpers.rb', line 45

def set_user_finder(&blk) # rubocop:disable Style/AccessorMethodName
  fail ':user_finder must accept 1 argument (user_id)' unless blk.arity == 1
  Foyer.user_finder = blk
end