13 lines
213 B
Ruby
13 lines
213 B
Ruby
class HomeController < ApplicationController
|
|
def index
|
|
if user_signed_in?
|
|
if current_user.admin?
|
|
|
|
else
|
|
end
|
|
end
|
|
|
|
@companies = Company.all
|
|
end
|
|
end
|