You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 22, 2024. It is now read-only.
This endpoint will be disabled by default to prevent security holes in existing use cases.
The goal of this endpoint is to be able to manipulate profiles (and zoapp users behind that) :
- route.add("POST", "/profiles", ["open"], management.createProfile);
- route.add("GET", "/profiles", ["open"], management.listProfiles);
- route.add("GET", "/profiles/:profileId", ["open"], management.getProfile);
- route.add("PUT", "/profiles/:userId", ["open"], management.updateProfile);
- route.add("DELETE", "/profiles/:userId", ["open"], management.deleteProfile);
This endpoint is not meant to be exposed publicly, but restricted on the network layer (by Kubernetes ingress rules for instance).