2013-01-22 12:05:01 -05:00
|
|
|
class UsersController < ApplicationController
|
2014-01-27 09:53:59 -05:00
|
|
|
|
|
|
|
skip_before_filter :authenticate_user!, only: [:show]
|
|
|
|
layout :determine_layout
|
2013-06-07 10:31:12 -04:00
|
|
|
|
2013-01-22 12:05:01 -05:00
|
|
|
def show
|
2014-01-27 09:53:59 -05:00
|
|
|
@user = User.find_by_username!(params[:username])
|
|
|
|
@projects = @user.authorized_projects.includes(:namespace).select {|project| can?(current_user, :read_project, project)}
|
|
|
|
if !current_user && @projects.empty?
|
|
|
|
return authenticate_user!
|
|
|
|
end
|
2013-01-22 12:05:01 -05:00
|
|
|
@events = @user.recent_events.where(project_id: @projects.map(&:id)).limit(20)
|
2013-06-07 10:31:12 -04:00
|
|
|
@title = @user.name
|
2013-01-22 12:05:01 -05:00
|
|
|
end
|
2014-01-27 09:53:59 -05:00
|
|
|
|
|
|
|
def determine_layout
|
|
|
|
if current_user
|
|
|
|
'navless'
|
|
|
|
else
|
|
|
|
'public_users'
|
|
|
|
end
|
|
|
|
end
|
2013-01-22 12:05:01 -05:00
|
|
|
end
|