9 lines
144 B
Ruby
9 lines
144 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AuthenticatedController < ApplicationController
|
||
|
before_action :authenticate_user!
|
||
|
|
||
|
def index
|
||
|
end
|
||
|
end
|