diaspora/app/controllers/home_controller.rb
Steven Hancock a8de3a5a3f Rails.root and File.join cleanup
- `Rails.root` is a `Pathname`, so let's use `Rails.root.join`
- Clean up most of the remaining `File.join`s
2012-06-11 03:13:20 -07:00

31 lines
874 B
Ruby

# Copyright (c) 2010-2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file.
class HomeController < ApplicationController
def show
if current_user
flag = FeatureFlagger.new(current_user, current_user.person)
if flag.new_profile? && flag.following_enabled?
redirect_to person_path(current_user.person.guid)
else
redirect_to stream_path
end
elsif is_mobile_device?
unless(File.exist?(Rails.root.join('app', 'views', 'home', '_show.mobile.erb')))
redirect_to user_session_path
else
render :show, :layout => 'post'
end
else
@landing_page = true
render :show, :layout => 'post'
end
end
def toggle_mobile
session[:mobile_view] = !session[:mobile_view]
redirect_to :back
end
end