feat (vclaim-sep): create, read, delete done

This commit is contained in:
dpurbosakti
2025-11-28 16:10:35 +07:00
parent abfbc568b0
commit 2a39301563
24 changed files with 343 additions and 75 deletions
@@ -99,9 +99,6 @@ func Verify(w http.ResponseWriter, r *http.Request) {
}
dto := e.UpdateDto{}
if res := rw.ValidateStructByIOR(w, r.Body, &dto); !res {
return
}
dto.Id = uint(id)
dto.Status_Code = erc.DVCVerified
dto.AuthInfo = *authInfo
@@ -120,9 +117,6 @@ func Validate(w http.ResponseWriter, r *http.Request) {
}
dto := e.UpdateDto{}
if res := rw.ValidateStructByIOR(w, r.Body, &dto); !res {
return
}
dto.Id = uint(id)
dto.Status_Code = erc.DVCValidated
dto.AuthInfo = *authInfo