Overview
Summary
Contact
Donate
Imprint
Prompt for the
UserAvatarView
Please create a React-JS view called "UserAvatarView" for the fields of the UserAvatar entity. The UserAvatarView must contain the following fields: - name: CreatedAt type: DATE - name: RenderedMediaFile type: MediaFile - name: StyleJson type: STRING - name: UpdatedAt type: DATE - name: UserAccount type: UserAccount The data source for the [RenderedMediaFile] 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 UserAvatar entity should be loaded from the relative URL: "/UserAccountService/useravatar/{id}" (HTTP-GET) If a new UserAvatar entity has been created, the new entity should be posted to the relative URL: "/UserAccountService/useravatar" (HTTP-POST) If an existing UserAvatar entity has been updated, the modified entity should be sent to the relative URL: "/UserAccountService/useravatar/{id}" (HTTP-PUT) If an existing UserAvatar entity has to be deleted, the following relative URL should be called: "/UserAccountService/useravatar/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint