Skip to content

Commit

Permalink
feat: add configration route for auth provider item
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Wang <[email protected]>
  • Loading branch information
ruibaby committed Sep 20, 2023
1 parent da2d56e commit 0314179
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { apiClient } from "@/utils/api-client";
import type { ListedAuthProvider } from "@halo-dev/api-client";
import {
Dialog,
IconSettings,
Toast,
VAvatar,
VEntity,
Expand Down Expand Up @@ -93,6 +94,19 @@ const handleChangeStatus = async () => {
</div>
</template>
</VEntityField>
<VEntityField>
<template #description>
<RouterLink
class="cursor-pointer rounded p-1 text-gray-600 transition-all hover:text-blue-600 group-hover:bg-gray-200/60"
:to="{
name: 'AuthProviderDetail',
params: { name: authProvider.name },
}"
>
<IconSettings />
</RouterLink>
</template>
</VEntityField>
</template>
</VEntity>
</template>

0 comments on commit 0314179

Please sign in to comment.