7 lines
145 B
Ruby
7 lines
145 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ProtectedController < ApplicationController
|
|
before_action :authenticate_user!
|
|
include Pagy::Backend
|
|
end
|