debian-mirror-gitlab/app/controllers/namespaces_controller.rb
2015-09-25 12:07:36 +05:30

26 lines
489 B
Ruby

class NamespacesController < ApplicationController
skip_before_action :authenticate_user!
def show
namespace = Namespace.find_by(path: params[:id])
if namespace
if namespace.is_a?(Group)
group = namespace
else
user = namespace.owner
end
end
if user
redirect_to user_path(user)
elsif group
redirect_to group_path(group)
elsif current_user.nil?
authenticate_user!
else
render_404
end
end
end