From fada3c2ed762068c8b18900b6ab13259a2d9bc8c Mon Sep 17 00:00:00 2001 From: wh1te909 <7434746+wh1te909@users.noreply.github.com> Date: Fri, 25 Oct 2024 19:26:20 +0000 Subject: [PATCH] also add column for copying callback url --- src/ee/sso/components/SSOProvidersTable.vue | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/ee/sso/components/SSOProvidersTable.vue b/src/ee/sso/components/SSOProvidersTable.vue index 9443caa..fae694d 100644 --- a/src/ee/sso/components/SSOProvidersTable.vue +++ b/src/ee/sso/components/SSOProvidersTable.vue @@ -38,7 +38,7 @@ For details, see: https://license.tacticalrmm.com/ee label="SSO Settings" no-caps color="primary" - size="sm" + size="md" /> @@ -107,6 +107,15 @@ For details, see: https://license.tacticalrmm.com/ee {{ truncateText(props.row.client_id, 35) }} {{ props.row.client_id }} + + + Copy Callback URL to Clipboard + + @@ -157,6 +166,12 @@ const columns: QTableColumn[] = [ align: "left", sortable: true, }, + { + name: "callback_url", + label: "Callback URL", + align: "left", + sortable: false, + }, ]; async function getSSOProviders() {