2016-02-22 07:00:20 -08:00
|
|
|
class HomeController < ApplicationController
|
2016-03-12 07:09:46 -08:00
|
|
|
layout 'dashboard'
|
|
|
|
|
2016-03-06 08:52:23 -08:00
|
|
|
before_action :authenticate_user!
|
|
|
|
|
2016-02-22 07:00:20 -08:00
|
|
|
def index
|
2016-03-12 07:09:46 -08:00
|
|
|
end
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|