Don't require user name for anonymous feedback msg
This commit is contained in:
parent
ef7466e0d5
commit
3789e4b3bd
|
@ -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…
Reference in a new issue