Overview
Summary
Contact
Donate
Imprint
Prompt for the
NewsItemView
Please create a React-JS view called "NewsItemView" for the fields of the NewsItem entity. The NewsItemView must contain the following fields: - name: Industry type: STRING - name: PublishedAt type: DATE - name: PublisherName type: STRING - name: Summary type: STRING - name: Title type: STRING - name: Url type: STRING An existing NewsItem entity should be loaded from the relative URL: "/GroupService/newsitem/{id}" (HTTP-GET) If a new NewsItem entity has been created, the new entity should be posted to the relative URL: "/GroupService/newsitem" (HTTP-POST) If an existing NewsItem entity has been updated, the modified entity should be sent to the relative URL: "/GroupService/newsitem/{id}" (HTTP-PUT) If an existing NewsItem entity has to be deleted, the following relative URL should be called: "/GroupService/newsitem/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint