scheduled_reminders/app/controllers/application_controller.rb

4 lines
93 B
Ruby
Raw Normal View History

2020-02-12 13:02:03 +01:00
class ApplicationController < ActionController::Base
2020-02-12 13:57:03 +01:00
before_action :authenticate_user!
2020-02-12 13:02:03 +01:00
end