From a3dffd1fc2e7080e2a67189947b5a83712fa8f67 Mon Sep 17 00:00:00 2001 From: Paolo Date: Fri, 6 Mar 2026 12:16:19 +0100 Subject: [PATCH] Login AS GUI now uses the UID and not the person_id --- public/js/LoginAs.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/js/LoginAs.js b/public/js/LoginAs.js index a49b5b397..56f0ff079 100644 --- a/public/js/LoginAs.js +++ b/public/js/LoginAs.js @@ -42,8 +42,8 @@ const loginAsApp = Vue.createApp({ if (this.selectedUser != null) { this.$api - .call(ApiLogin.loginASByPersonId({ - person_id: this.selectedUser.person_id + .call(ApiLogin.loginASByUid({ + uid: this.selectedUser.uid })) .then((response) => { location.reload();