Overview
Summary
Contact
Donate
Imprint
Prompt for the
StatusUpdateView
Please create a React-JS view called "StatusUpdateView" for the fields of the StatusUpdate entity. The StatusUpdateView must contain the following fields: - name: CreatedAt type: DATE - name: ExpiresAt type: DATE - name: MediaFile type: MediaFile - name: StatusType type: STRING - name: TextContent type: STRING - name: UserAccount type: UserAccount - name: VisibilityScope type: STRING - name: VoiceNoteMediaFile type: MediaFile The data source for the [MediaFile] select control should be loaded from the relative URL: "/MediaFileService/mediafile" (HTTP-GET) The data source for the [VoiceNoteMediaFile] select control should be loaded from the relative URL: "/MediaFileService/mediafile" (HTTP-GET) The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing StatusUpdate entity should be loaded from the relative URL: "/MediaFileService/statusupdate/{id}" (HTTP-GET) If a new StatusUpdate entity has been created, the new entity should be posted to the relative URL: "/MediaFileService/statusupdate" (HTTP-POST) If an existing StatusUpdate entity has been updated, the modified entity should be sent to the relative URL: "/MediaFileService/statusupdate/{id}" (HTTP-PUT) If an existing StatusUpdate entity has to be deleted, the following relative URL should be called: "/MediaFileService/statusupdate/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint