- Refused User

- Report User
- Unblock User
- refresh tables when an action (setFriends and setGroups) occurred.
- fix duplicate call of loadsite
This commit is contained in:
paoloar77
2022-08-08 16:34:30 +02:00
parent ce20daed6d
commit 4cde86c113
15 changed files with 155 additions and 14 deletions

View File

@@ -17,6 +17,7 @@ import { useNotifStore } from '@store/NotifStore'
import { INotif } from 'model'
import { IUserFields } from '@model/UserStore'
import { useI18n } from '@/boot/i18n'
import MixinUsers from '@/mixins/mixin-users'
export default defineComponent({
name: 'userPanel',
@@ -57,6 +58,8 @@ export default defineComponent({
const userStore = useUserStore()
const notifStore = useNotifStore()
const { getMyUsername } = MixinUsers()
async function mounted() {
//
search.value = tools.getCookie(tools.COOK_SEARCH + 'searchpanel')
@@ -141,6 +144,7 @@ export default defineComponent({
listnotif,
listnotiftype,
listnotifid,
getMyUsername,
}
}
})