Overview
Summary
Contact
Donate
Imprint
Prompt for the
ServerLogEntryView
Please create a React-JS view called "ServerLogEntryView" for the fields of the ServerLogEntry entity. The ServerLogEntryView must contain the following fields: - name: Conversation type: Conversation - name: CreatedAt type: DATE - name: Device type: Device - name: EventType type: STRING - name: LogLevel type: STRING - name: Message type: Message - name: ServerNode type: ServerNode - name: UserAccount type: UserAccount The data source for the [Message] select control should be loaded from the relative URL: "/MessageService/message" (HTTP-GET) The data source for the [Device] select control should be loaded from the relative URL: "/MessageService/device" (HTTP-GET) The data source for the [Conversation] select control should be loaded from the relative URL: "/ConversationService/conversation" (HTTP-GET) The data source for the [ServerNode] select control should be loaded from the relative URL: "/ServerNodeService/servernode" (HTTP-GET) The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing ServerLogEntry entity should be loaded from the relative URL: "/ServerNodeService/serverlogentry/{id}" (HTTP-GET) If a new ServerLogEntry entity has been created, the new entity should be posted to the relative URL: "/ServerNodeService/serverlogentry" (HTTP-POST) If an existing ServerLogEntry entity has been updated, the modified entity should be sent to the relative URL: "/ServerNodeService/serverlogentry/{id}" (HTTP-PUT) If an existing ServerLogEntry entity has to be deleted, the following relative URL should be called: "/ServerNodeService/serverlogentry/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint