2016-02-23 00:00:20 +09:00
|
|
|
class HomeController < ApplicationController
|
2016-03-13 00:09:46 +09:00
|
|
|
layout 'dashboard'
|
|
|
|
|
2016-03-07 01:52:23 +09:00
|
|
|
before_action :authenticate_user!
|
|
|
|
|
2016-02-23 00:00:20 +09:00
|
|
|
def index
|
2016-03-13 00:09:46 +09:00
|
|
|
end
|
2016-02-23 00:00:20 +09:00
|
|
|
end
|