Overview
Summary
Contact
Donate
Imprint
Prompt for the
LoginSessionView
Please create a React-JS view called "LoginSessionView" for the fields of the LoginSession entity. The LoginSessionView must contain the following fields: - name: IpAddress type: STRING - name: IsActive type: BOOL - name: LoggedInAt type: DATE - name: LoggedOutAt type: DATE - name: LoginMethod type: STRING - name: UserAccount type: UserAccount - name: UserDevice type: UserDevice The data source for the [UserDevice] select control should be loaded from the relative URL: "/UserDeviceService/userdevice" (HTTP-GET) The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing LoginSession entity should be loaded from the relative URL: "/VoiceCallService/loginsession/{id}" (HTTP-GET) If a new LoginSession entity has been created, the new entity should be posted to the relative URL: "/VoiceCallService/loginsession" (HTTP-POST) If an existing LoginSession entity has been updated, the modified entity should be sent to the relative URL: "/VoiceCallService/loginsession/{id}" (HTTP-PUT) If an existing LoginSession entity has to be deleted, the following relative URL should be called: "/VoiceCallService/loginsession/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint