Overview
Summary
Contact
Donate
Imprint
Prompt for the
BlockView
Please create a React-JS view called "BlockView" for the fields of the Block entity. The BlockView must contain the following fields: - name: BlockedE164Number type: STRING - name: BlockedUserAccount type: LONG - name: CreatedAt type: DATE - name: Reason 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 Block entity should be loaded from the relative URL: "/UserAccountService/block/{id}" (HTTP-GET) If a new Block entity has been created, the new entity should be posted to the relative URL: "/UserAccountService/block" (HTTP-POST) If an existing Block entity has been updated, the modified entity should be sent to the relative URL: "/UserAccountService/block/{id}" (HTTP-PUT) If an existing Block entity has to be deleted, the following relative URL should be called: "/UserAccountService/block/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint