Makes deposit writable and applies range check from
0-100
This commit is contained in:
parent
8a0957f512
commit
259285c59c
|
@ -122,8 +122,7 @@ class Computer(Device):
|
||||||
dump_only=True,
|
dump_only=True,
|
||||||
collection_class=set,
|
collection_class=set,
|
||||||
description=m.Computer.privacy.__doc__)
|
description=m.Computer.privacy.__doc__)
|
||||||
deposit = Integer(dump_only=True,
|
deposit = Integer(validate=f.validate.Range(min=0, max=100),
|
||||||
data_key='deposit',
|
|
||||||
description=m.Computer.deposit.__doc__)
|
description=m.Computer.deposit.__doc__)
|
||||||
# author_id = NestedOn(s_user.User,only_query='author_id')
|
# author_id = NestedOn(s_user.User,only_query='author_id')
|
||||||
owner_address = SanitizedStr(validate=f.validate.Length(max=42))
|
owner_address = SanitizedStr(validate=f.validate.Length(max=42))
|
||||||
|
|
|
@ -18,8 +18,7 @@ class Lot(Thing):
|
||||||
children = NestedOn('Lot', many=True, dump_only=True)
|
children = NestedOn('Lot', many=True, dump_only=True)
|
||||||
parents = NestedOn('Lot', many=True, dump_only=True)
|
parents = NestedOn('Lot', many=True, dump_only=True)
|
||||||
url = URL(dump_only=True, description=m.Lot.url.__doc__)
|
url = URL(dump_only=True, description=m.Lot.url.__doc__)
|
||||||
deposit = f.Integer(dump_only=True,
|
deposit = f.Integer(validate=f.validate.Range(min=0, max=100),
|
||||||
data_key='deposit',
|
|
||||||
description=m.Lot.deposit.__doc__)
|
description=m.Lot.deposit.__doc__)
|
||||||
# author_id = NestedOn(s_user.User,only_query='author_id')
|
# author_id = NestedOn(s_user.User,only_query='author_id')
|
||||||
owner_address = SanitizedStr(validate=f.validate.Length(max=42))
|
owner_address = SanitizedStr(validate=f.validate.Length(max=42))
|
||||||
|
|
Reference in New Issue