Skip to content

Commit

Permalink
also add column for copying callback url
Browse files Browse the repository at this point in the history
  • Loading branch information
wh1te909 committed Oct 25, 2024
1 parent c1cd611 commit fada3c2
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion src/ee/sso/components/SSOProvidersTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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 -->
Expand Down Expand Up @@ -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>
Expand Down Expand Up @@ -157,6 +166,12 @@ const columns: QTableColumn[] = [
align: "left",
sortable: true,
},
{
name: "callback_url",
label: "Callback URL",
align: "left",
sortable: false,
},
];

async function getSSOProviders() {
Expand Down

0 comments on commit fada3c2

Please sign in to comment.