Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/namespaces_controller.rb')
-rw-r--r--app/controllers/namespaces_controller.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/app/controllers/namespaces_controller.rb b/app/controllers/namespaces_controller.rb
new file mode 100644
index 00000000000..c59a2401cef
--- /dev/null
+++ b/app/controllers/namespaces_controller.rb
@@ -0,0 +1,18 @@
+class NamespacesController < ApplicationController
+ skip_before_filter :authenticate_user!
+
+ def show
+ namespace = Namespace.find_by(path: params[:id])
+
+ unless namespace
+ return render_404
+ end
+
+ if namespace.type == "Group"
+ redirect_to group_path(namespace)
+ else
+ redirect_to user_path(namespace.owner)
+ end
+ end
+end
+