Overview
Summary
Contact
Donate
Imprint
Prompt for the
HashtagView
Please create a React-JS view called "HashtagView" for the fields of the Hashtag entity. The HashtagView must contain the following fields: - name: CreatedAt type: DATE - name: Description type: STRING - name: IsBanned type: BOOL - name: Name type: STRING An existing Hashtag entity should be loaded from the relative URL: "/HashtagService/hashtag/{id}" (HTTP-GET) If a new Hashtag entity has been created, the new entity should be posted to the relative URL: "/HashtagService/hashtag" (HTTP-POST) If an existing Hashtag entity has been updated, the modified entity should be sent to the relative URL: "/HashtagService/hashtag/{id}" (HTTP-PUT) If an existing Hashtag entity has to be deleted, the following relative URL should be called: "/HashtagService/hashtag/{id}" (HTTP-DELETE) Add a HTML table to the view with the following UserHashtagFollow columns: - column: UserAccount - column: CreatedAt - column: Hashtag The table should have the title "UserHashtagFollows" und the data must be loaded from the server with the following relative URL: "/HashtagService/userhashtagfollow/hashtag/{id}" Add a HTML table to the view with the following PostHashtag columns: - column: Hashtag - column: Post The table should have the title "PostHashtags" und the data must be loaded from the server with the following relative URL: "/HashtagService/posthashtag/hashtag/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint