1
0

Merge remote-tracking branch 'misskey/master' into feature/misskey-2024.07

This commit is contained in:
dakkar
2024-08-02 12:25:58 +01:00
585 changed files with 23423 additions and 9623 deletions
+25 -1
View File
@@ -232,13 +232,26 @@ const routes: RouteDef[] = [{
component: page(() => import('@/pages/search.vue')),
query: {
q: 'query',
userId: 'userId',
username: 'username',
host: 'host',
channel: 'channel',
type: 'type',
origin: 'origin',
},
}, {
// Legacy Compatibility
path: '/authorize-follow',
component: page(() => import('@/pages/follow.vue')),
redirect: '/lookup',
loginRequired: true,
}, {
// Mastodon Compatibility
path: '/authorize_interaction',
redirect: '/lookup',
loginRequired: true,
}, {
path: '/lookup',
component: page(() => import('@/pages/lookup.vue')),
loginRequired: true,
}, {
path: '/share',
@@ -251,6 +264,9 @@ const routes: RouteDef[] = [{
}, {
path: '/scratchpad',
component: page(() => import('@/pages/scratchpad.vue')),
}, {
path: '/preview',
component: page(() => import('@/pages/preview.vue')),
}, {
path: '/auth/:token',
component: page(() => import('@/pages/auth.vue')),
@@ -475,6 +491,14 @@ const routes: RouteDef[] = [{
path: '/approvals',
name: 'approvals',
component: page(() => import('@/pages/admin/approvals.vue')),
}, {
path: '/abuse-report-notification-recipient',
name: 'abuse-report-notification-recipient',
component: page(() => import('@/pages/admin/abuse-report/notification-recipient.vue')),
}, {
path: '/system-webhook',
name: 'system-webhook',
component: page(() => import('@/pages/admin/system-webhook.vue')),
}, {
path: '/',
component: page(() => import('@/pages/_empty_.vue')),