view devices for profile

This commit is contained in:
miloschwartz
2025-11-05 17:27:16 -08:00
parent 4ade878320
commit 9fd6af3a31
7 changed files with 483 additions and 3 deletions

View File

@@ -758,11 +758,24 @@ authenticated.delete(
// createNewt
// );
// only for logged in user
authenticated.put(
"/olm",
olm.createOlm
);
// only for logged in user
authenticated.get(
"/olms",
olm.listOlms
);
// only for logged in user
authenticated.delete(
"/olm/:olmId",
olm.deleteOlm
);
authenticated.put(
"/idp/oidc",
verifyUserIsServerAdmin,