Added resolution endpoint. Added delete endpoints. Added tests for new endpoints
All checks were successful
checks-impure / test (pull_request) Successful in 29s
checks / test (pull_request) Successful in 1m17s

This commit is contained in:
2023-12-09 20:57:05 +01:00
parent f296c01abc
commit b12201c559
6 changed files with 242 additions and 4 deletions

View File

@@ -107,4 +107,5 @@ class Resolution(Base):
requester_name = Column(String, index=True)
requester_did = Column(String, index=True)
resolved_did = Column(String, index=True)
timestamp = Column(DateTime, index=True)
other = Column(JSON)
timestamp = Column(DateTime(timezone=True), server_default=func.now())