5 lines
114 B
Ruby
5 lines
114 B
Ruby
class ProtectedController < ApplicationController
|
|
before_action :authenticate_user!
|
|
include Pagy::Backend
|
|
end
|