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