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
path: root/app
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-06-07 16:50:45 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-06-07 16:50:45 +0400
commitbcea7ba331e26c037dda9782f069bfb38f5bb602 (patch)
tree53155fe90121a67c2ba00222e21f4cb1ab171939 /app
parent0d13abb1c8d527f2a6e6b97e34899e9b35f264bc (diff)
parent3dc0bce9474ac52046f5c3efb2532af6334a7aae (diff)
Merge branch 'namespace-route' into 'master'
Namespace route Fixes #1312
Diffstat (limited to 'app')
-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
+