Overview
Summary
Contact
Donate
Imprint
Prompt for the
SpaceParticipantView
Please create a React-JS view called "SpaceParticipantView" for the fields of the SpaceParticipant entity. The SpaceParticipantView must contain the following fields: - name: JoinedAt type: STRING - name: LeftAt type: STRING - name: Role type: STRING - name: Space type: Space - name: User type: UserAccount The data source for the [Space] select control should be loaded from the relative URL: "/SpaceService/space" (HTTP-GET) The data source for the [User] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing SpaceParticipant entity should be loaded from the relative URL: "/SpaceService/spaceparticipant/{id}" (HTTP-GET) If a new SpaceParticipant entity has been created, the new entity should be posted to the relative URL: "/SpaceService/spaceparticipant" (HTTP-POST) If an existing SpaceParticipant entity has been updated, the modified entity should be sent to the relative URL: "/SpaceService/spaceparticipant/{id}" (HTTP-PUT) If an existing SpaceParticipant entity has to be deleted, the following relative URL should be called: "/SpaceService/spaceparticipant/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint