Overview
Summary
Contact
Donate
Imprint
Prompt for the
ServerNodeView
Please create a React-JS view called "ServerNodeView" for the fields of the ServerNode entity. The ServerNodeView must contain the following fields: - name: CreatedAt type: DATE - name: IsActive type: BOOL - name: Name type: STRING - name: Region type: STRING An existing ServerNode entity should be loaded from the relative URL: "/ServerNodeService/servernode/{id}" (HTTP-GET) If a new ServerNode entity has been created, the new entity should be posted to the relative URL: "/ServerNodeService/servernode" (HTTP-POST) If an existing ServerNode entity has been updated, the modified entity should be sent to the relative URL: "/ServerNodeService/servernode/{id}" (HTTP-PUT) If an existing ServerNode entity has to be deleted, the following relative URL should be called: "/ServerNodeService/servernode/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ServerLogEntry columns: - column: EventType - column: UserAccount - column: Conversation - column: LogLevel - column: Device - column: Message - column: ServerNode - column: CreatedAt The table should have the title "ServerLogEntrys" und the data must be loaded from the server with the following relative URL: "/ServerNodeService/serverlogentry/servernode/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint