feat: Remove chat key management and debug endpoints, simplify chat message handling, and enhance migration page with DM and bot export capabilities.

This commit is contained in:
Christomatt
2026-01-29 00:04:22 +01:00
parent 9cd23081ed
commit c47b0141f5
11 changed files with 293 additions and 249 deletions
+5 -1
View File
@@ -10,6 +10,8 @@ interface ExportStats {
posts: number;
following: number;
mediaFiles: number;
dms: number;
bots: number;
}
export default function MigrationPage() {
@@ -137,6 +139,8 @@ export default function MigrationPage() {
<li>Your profile information</li>
<li>All your posts</li>
<li>Your following list</li>
<li>All DMs and conversation history</li>
<li>Your automated bots and their configuration</li>
</ul>
</div>
@@ -167,7 +171,7 @@ export default function MigrationPage() {
borderRadius: '8px',
marginBottom: '20px',
}}>
Export successful! Downloaded {exportStats.posts} posts and {exportStats.mediaFiles} media references.
Export successful! Downloaded {exportStats.posts} posts, {exportStats.dms} DM threads, and {exportStats.bots} bots.
</div>
)}