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

9 lines
173 B
Ruby

class ApplicationController < ActionController::Base
def authenticate_member!
true
end
def current_member
Member.new(email: "torsten@villataika.fi")
end
end