7 lines
113 B
Ruby
7 lines
113 B
Ruby
|
class Profile::HomeController < ApplicationController
|
||
|
before_action :authenticate_user!
|
||
|
|
||
|
def index
|
||
|
end
|
||
|
end
|