# File app/controllers/groups_controller.rb, line 19 def create @group = Group.new(params[:group]) if @group.save flash[:notice] = 'Group was successfully created.' back_or_redirect_to :action => 'list' else render :action => 'new' end end