Overview
Summary
Contact
Donate
Imprint
Prompt for the
UserDocumentView
Please create a React-JS view called "UserDocumentView" for the fields of the UserDocument entity. The UserDocumentView must contain the following fields: - name: CreatedAt type: DATE - name: DocumentNumber type: STRING - name: DocumentType type: STRING - name: ExpiresAt type: DATE - name: IssuedAt type: DATE - name: IssuedBy type: STRING - name: Status type: STRING - name: UserAccount type: UserAccount The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing UserDocument entity should be loaded from the relative URL: "/UserDocumentService/userdocument/{id}" (HTTP-GET) If a new UserDocument entity has been created, the new entity should be posted to the relative URL: "/UserDocumentService/userdocument" (HTTP-POST) If an existing UserDocument entity has been updated, the modified entity should be sent to the relative URL: "/UserDocumentService/userdocument/{id}" (HTTP-PUT) If an existing UserDocument entity has to be deleted, the following relative URL should be called: "/UserDocumentService/userdocument/{id}" (HTTP-DELETE) Add a HTML table to the view with the following UserKycVerification columns: - column: RequestedAt - column: Notes - column: UserAccount - column: Reviewer - column: Status - column: VerificationType - column: CompletedAt - column: UserDocument The table should have the title "UserKycVerifications" und the data must be loaded from the server with the following relative URL: "/UserDocumentService/userkycverification/userdocument/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint