Overview
Summary
Contact
Donate
Imprint
Prompt for the
IdentityKeyView
Please create a React-JS view called "IdentityKeyView" for the fields of the IdentityKey entity. The IdentityKeyView must contain the following fields: - name: CreatedAt type: DATE - name: IsCurrent type: BOOL - name: PublicKey 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 IdentityKey entity should be loaded from the relative URL: "/CallDurationService/identitykey/{id}" (HTTP-GET) If a new IdentityKey entity has been created, the new entity should be posted to the relative URL: "/CallDurationService/identitykey" (HTTP-POST) If an existing IdentityKey entity has been updated, the modified entity should be sent to the relative URL: "/CallDurationService/identitykey/{id}" (HTTP-PUT) If an existing IdentityKey entity has to be deleted, the following relative URL should be called: "/CallDurationService/identitykey/{id}" (HTTP-DELETE) Add a HTML table to the view with the following EncryptionKeyBundle columns: - column: IdentityKey - column: CreatedAt - column: Device - column: UserAccount - column: BundleVersion The table should have the title "EncryptionKeyBundles" und the data must be loaded from the server with the following relative URL: "/UserAccountService/encryptionkeybundle/identitykey/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint