1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-01 03:57:15 +00:00

Use Group.visible instead of manual visibility check in GroupsController (#38144).

Patch by Holger Just.


git-svn-id: https://svn.redmine.org/redmine/trunk@22023 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2023-01-04 01:05:20 +00:00
parent 025323f5ba
commit 1c937f1e23

View File

@ -50,8 +50,6 @@ class GroupsController < ApplicationController
end
def show
return render_404 unless @group.visible?
respond_to do |format|
format.html do
render :layout => 'base'
@ -149,7 +147,7 @@ class GroupsController < ApplicationController
private
def find_group
@group = Group.find(params[:id])
@group = Group.visible.find(params[:id])
rescue ActiveRecord::RecordNotFound
render_404
end