When creating a new role, permissions are pre-filled with 'Non member' role permissions.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@943 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
457c9a8e72
commit
aebcfb1eda
|
@ -33,7 +33,8 @@ class RolesController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def new
|
def new
|
||||||
@role = Role.new(params[:role])
|
# Prefills the form with 'Non member' role permissions
|
||||||
|
@role = Role.new(params[:role] || {:permissions => Role.non_member.permissions})
|
||||||
if request.post? && @role.save
|
if request.post? && @role.save
|
||||||
flash[:notice] = l(:notice_successful_create)
|
flash[:notice] = l(:notice_successful_create)
|
||||||
redirect_to :action => 'list'
|
redirect_to :action => 'list'
|
||||||
|
|
Loading…
Reference in New Issue