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