mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-05 00:19:59 +00:00
feat: admin.sign_up notifiaction
This commit is contained in:
parent
deea8c0aab
commit
c4ae1d1d6f
1 changed files with 7 additions and 0 deletions
|
@ -18,6 +18,13 @@ const { notification } = defineProps<{
|
|||
</div>
|
||||
<AccountCard :account="notification.account" />
|
||||
</template>
|
||||
<template v-if="notification.type === 'admin.sign_up'">
|
||||
<div flex p2 items-center gap-2>
|
||||
<div i-ri:admin-fill mr-1 color-purple />
|
||||
<span>New Sign Up</span>
|
||||
</div>
|
||||
<AccountCard :account="notification.account" px2 pb2 />
|
||||
</template>
|
||||
<template v-else-if="notification.type === 'follow_request'">
|
||||
<div flex ml-4 items-center class="-top-2.5" absolute right-2 px-2>
|
||||
<div i-ri:user-follow-fill mr-1 />
|
||||
|
|
Loading…
Reference in a new issue