Clean up trailing and leading whitespace
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
class WorkInfoController < ApplicationController
|
||||
|
||||
|
||||
def index
|
||||
@user = User.find_by_user_id(params[:user_id])
|
||||
if !(@user) || @user.admin
|
||||
if !(@user) || @user.admin
|
||||
flash[:error] = "Sorry, no user with that user id exists"
|
||||
redirect_to home_dashboard_index_path
|
||||
end
|
||||
@@ -12,11 +12,11 @@ class WorkInfoController < ApplicationController
|
||||
# More secure version
|
||||
def index
|
||||
@user = current_user
|
||||
if !(@user) || @user.admin
|
||||
if !(@user) || @user.admin
|
||||
flash[:error] = "Apologies, looks like something went wrong"
|
||||
redirect_to home_dashboard_index_path
|
||||
end
|
||||
end
|
||||
=end
|
||||
|
||||
=end
|
||||
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user