Don't require user name for anonymous feedback msg
This commit is contained in:
parent
ef7466e0d5
commit
3789e4b3bd
1 changed files with 2 additions and 1 deletions
|
@ -53,7 +53,8 @@ class Feedback(colander.Schema):
|
|||
|
||||
user = colander.SchemaNode(forms.types.UserType())
|
||||
|
||||
user_name = colander.SchemaNode(colander.String())
|
||||
user_name = colander.SchemaNode(colander.String(),
|
||||
missing=colander.null)
|
||||
|
||||
message = colander.SchemaNode(colander.String())
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue