7 lines
140 B
Ruby
7 lines
140 B
Ruby
module NewUser
|
|
class UserController < ApplicationController
|
|
layout "new_application"
|
|
|
|
before_action :authenticate_user!
|
|
end
|
|
end
|