diff options
Diffstat (limited to 'packages/client/src/pages/messages.vue')
| -rw-r--r-- | packages/client/src/pages/messages.vue | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/packages/client/src/pages/messages.vue b/packages/client/src/pages/messages.vue deleted file mode 100644 index 9c5fb9b341..0000000000 --- a/packages/client/src/pages/messages.vue +++ /dev/null @@ -1,27 +0,0 @@ -<template> -<MkSpacer :content-max="800"> - <XNotes :pagination="pagination"/> -</MkSpacer> -</template> - -<script lang="ts" setup> -import XNotes from '@/components/notes.vue'; -import * as symbols from '@/symbols'; -import { i18n } from '@/i18n'; - -const pagination = { - endpoint: 'notes/mentions' as const, - limit: 10, - params: { - visibility: 'specified' - }, -}; - -defineExpose({ - [symbols.PAGE_INFO]: { - title: i18n.ts.directNotes, - icon: 'fas fa-envelope', - bg: 'var(--bg)', - }, -}); -</script> |