AlainD
AlainD

Reputation: 6356

Web navigation to an entity

I have an newMips application deployed which I can access with myname-myapp.newmips.cloud/ as explained on this question.

Is there a url to open directly on an entity ? I am thinking of typing https://myname-myapp.newmips.cloud/employee and having the list of employees displayed in the browser (after authentication if I am not yet).

If we go one step further, https://myname-myapp.newmips.cloud/employee?id=employeeId would display this employee data sheet.

Upvotes: 0

Views: 32

Answers (1)

Yabada
Yabada

Reputation: 1758

Entity show page :

https://myname-myapp.newmips.cloud/employee/show?id=employeeId

Entity list page :

https://myname-myapp.newmips.cloud/employee/list

You only need to add /show to the url to be on an entity record, /list to list records

Upvotes: 1

Related Questions