merged/test/dummy/app/controllers/application_controller.rb

9 lines
173 B
Ruby
Raw Normal View History

class ApplicationController < ActionController::Base
def authenticate_member!
true
end
2022-12-22 20:27:28 +01:00
def current_member
Member.new(email: "torsten@villataika.fi")
end
end