Add ProofFunction view except author field

This commit is contained in:
yiorgos marinellis 2020-03-17 23:36:27 +01:00
parent 3ce32f2dd4
commit e3f960aa8b
2 changed files with 4 additions and 3 deletions

View File

@ -112,7 +112,7 @@ class ProofDataWipe(JoinedTableMixin, Proof):
class ProofFunction(JoinedTableMixin, Proof):
disk_usage = Column(db.Integer, default=0)
rate_id = Column(UUID, ForeignKey(Rate.id), nullable=False)
rate_id = Column(UUID(as_uuid=True), ForeignKey(Rate.id), nullable=False)
rate = relationship(Rate,
backref=backref('proof_function',
lazy=True,

View File

@ -45,8 +45,9 @@ class ProofDataWipe(Proof):
class ProofFunction(Proof):
__doc__ = m.ProofFunction.__doc__
disk_usage = Integer()
rate = NestedOn(s_action.Rate, required=True, only_query='id')
disk_usage = Integer(data_key='diskUsage')
rate = NestedOn(s_action.Rate, required=True,
only_query='id', data_key='rateID')
class ProofReuse(Proof):