49697bc8df
In order to avoid string manipulation or modify route params (to make them unambiguous for `url_for`), we are accepting a behavior change: When being redirected to the canonical path for a group, if you requested a group show path starting with `/groups/…` then you’ll now be redirected to the group at root `/…`.
40 lines
880 B
Ruby
40 lines
880 B
Ruby
class Groups::ApplicationController < ApplicationController
|
|
include RoutableActions
|
|
|
|
layout 'group'
|
|
|
|
skip_before_action :authenticate_user!
|
|
before_action :group
|
|
|
|
private
|
|
|
|
def group
|
|
@group ||= find_routable!(Group, params[:group_id] || params[:id])
|
|
end
|
|
|
|
def group_projects
|
|
@projects ||= GroupProjectsFinder.new(group: group, current_user: current_user).execute
|
|
end
|
|
|
|
def group_merge_requests
|
|
@group_merge_requests = MergeRequestsFinder.new(current_user, group_id: @group.id).execute
|
|
end
|
|
|
|
def authorize_admin_group!
|
|
unless can?(current_user, :admin_group, group)
|
|
return render_404
|
|
end
|
|
end
|
|
|
|
def authorize_admin_group_member!
|
|
unless can?(current_user, :admin_group_member, group)
|
|
return render_403
|
|
end
|
|
end
|
|
|
|
def build_canonical_path(group)
|
|
params[:group_id] = group.to_param
|
|
|
|
url_for(params)
|
|
end
|
|
end
|