Files
site/app/controllers/protected_controller.rb
2021-04-29 10:27:01 +02:00

5 lines
114 B
Ruby

class ProtectedController < ApplicationController
before_action :authenticate_user!
include Pagy::Backend
end