also add column for copying callback url

This commit is contained in:
wh1te909
2024-10-25 19:26:20 +00:00
parent c1cd6114de
commit fada3c2ed7

View File

@@ -38,7 +38,7 @@ For details, see: https://license.tacticalrmm.com/ee
label="SSO Settings"
no-caps
color="primary"
size="sm"
size="md"
/>
</template>
<!-- body slots -->
@@ -107,6 +107,15 @@ For details, see: https://license.tacticalrmm.com/ee
{{ truncateText(props.row.client_id, 35) }}
<q-tooltip>{{ props.row.client_id }}</q-tooltip>
</q-td>
<q-td>
<q-icon
size="sm"
name="content_copy"
@click="getCallbackURL(props.row)"
>
<q-tooltip>Copy Callback URL to Clipboard</q-tooltip>
</q-icon>
</q-td>
</q-tr>
</template>
</q-table>
@@ -157,6 +166,12 @@ const columns: QTableColumn[] = [
align: "left",
sortable: true,
},
{
name: "callback_url",
label: "Callback URL",
align: "left",
sortable: false,
},
];
async function getSSOProviders() {