summaryrefslogtreecommitdiff
path: root/app/controllers/namespaces_controller.rb
blob: b7a9d8c12912711862fe6a362b3e2a3eb2916b4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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