Overview
Summary
Contact
Donate
Imprint
Prompt for the
AudioTrackView
Please create a React-JS view called "AudioTrackView" for the fields of the AudioTrack entity. The AudioTrackView must contain the following fields: - name: ChannelLayout type: STRING - name: Codec type: STRING - name: Description type: STRING - name: IsOriginal type: BOOL - name: Language type: Language - name: Title type: Title The data source for the [Language] select control should be loaded from the relative URL: "/LanguageService/language" (HTTP-GET) The data source for the [Title] select control should be loaded from the relative URL: "/TitleService/title" (HTTP-GET) An existing AudioTrack entity should be loaded from the relative URL: "/LanguageService/audiotrack/{id}" (HTTP-GET) If a new AudioTrack entity has been created, the new entity should be posted to the relative URL: "/LanguageService/audiotrack" (HTTP-POST) If an existing AudioTrack entity has been updated, the modified entity should be sent to the relative URL: "/LanguageService/audiotrack/{id}" (HTTP-PUT) If an existing AudioTrack entity has to be deleted, the following relative URL should be called: "/LanguageService/audiotrack/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint