feat(threads): add real-time forum and chat system
Implement DB schema, API, and WebSocket for channels and messages Add frontend views, AI moderation, and admin management
This commit is contained in:
11
frontend/pages/threads/[id].vue
Normal file
11
frontend/pages/threads/[id].vue
Normal file
@@ -0,0 +1,11 @@
|
||||
<script setup lang="ts">
|
||||
import ThreadsView from '../../src/views/ThreadsView.vue';
|
||||
|
||||
definePageMeta({
|
||||
title: 'Threads'
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<ThreadsView />
|
||||
</template>
|
||||
11
frontend/pages/threads/index.vue
Normal file
11
frontend/pages/threads/index.vue
Normal file
@@ -0,0 +1,11 @@
|
||||
<script setup lang="ts">
|
||||
import ThreadsView from '../../src/views/ThreadsView.vue';
|
||||
|
||||
definePageMeta({
|
||||
title: 'Threads'
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<ThreadsView />
|
||||
</template>
|
||||
Reference in New Issue
Block a user