Fix task validation again #16; mark assignment validation TODO
This commit is contained in:
parent
e561ddb064
commit
d086fe7cc7
2 changed files with 4 additions and 3 deletions
|
@ -17,7 +17,7 @@ class TasksController < ApplicationController
|
|||
|
||||
def create
|
||||
@task = Task.new(params[:task])
|
||||
if @task.save
|
||||
if @task.errors.empty? && @task.save
|
||||
flash[:notice] = "Aufgabe wurde erstellt"
|
||||
if @task.workgroup
|
||||
redirect_to :action => "workgroup", :id => @task.workgroup
|
||||
|
@ -40,8 +40,7 @@ class TasksController < ApplicationController
|
|||
def update
|
||||
@task = Task.find(params[:id])
|
||||
@task.attributes=(params[:task])
|
||||
if @task.errors.empty?
|
||||
@task.save
|
||||
if @task.errors.empty? && @task.save
|
||||
flash[:notice] = "Aufgabe wurde aktualisiert"
|
||||
if @task.workgroup
|
||||
redirect_to :action => "workgroup", :id => @task.workgroup
|
||||
|
|
|
@ -29,6 +29,8 @@ class Task < ActiveRecord::Base
|
|||
|
||||
# extracts nicknames from a comma seperated string
|
||||
# and makes the users responsible for the task
|
||||
# TODO: check for uniqueness
|
||||
# TODO: check for maximal number of users
|
||||
def user_list=(string)
|
||||
@user_list = string.split(%r{,\s*})
|
||||
new_users = @user_list - users.collect(&:nick)
|
||||
|
|
Loading…
Reference in a new issue