5 lines
110 B
Ruby
5 lines
110 B
Ruby
module NewUser
|
|
class UserController < ApplicationController
|
|
before_action :authenticate_user!
|
|
end
|
|
end
|