Overview
Summary
Contact
Donate
Imprint
Prompt for the
UserLoginSessionView
Please create a React-JS view called "UserLoginSessionView" for the fields of the UserLoginSession entity. The UserLoginSessionView must contain the following fields: - name: CreatedAt type: DATE - name: ExpiresAt type: DATE - name: IpAddress type: STRING - name: SessionToken type: STRING - name: Status type: STRING - name: UserAccount type: UserAccount - name: UserAgent type: STRING - 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 UserLoginSession entity should be loaded from the relative URL: "/UserDeviceService/userloginsession/{id}" (HTTP-GET) If a new UserLoginSession entity has been created, the new entity should be posted to the relative URL: "/UserDeviceService/userloginsession" (HTTP-POST) If an existing UserLoginSession entity has been updated, the modified entity should be sent to the relative URL: "/UserDeviceService/userloginsession/{id}" (HTTP-PUT) If an existing UserLoginSession entity has to be deleted, the following relative URL should be called: "/UserDeviceService/userloginsession/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint