You've already forked AstralRinth
forked from didirus/AstralRinth
f32558cf97
* feat: start on fix * fix: withdraw btn * fix: lint issues * feat: start on download stage for tax form modal * fix: use button rather than span * fix: lint * fix: lint issues * feat: tax form notification email for users who didnt get chance to download * feat: finish download stage for tax modal * fix: lint & i18n * fix: lint + svg cleanup --------- Signed-off-by: Calum H. <contact@cal.engineer> Co-authored-by: --global <--global>
37 lines
1.8 KiB
TypeScript
37 lines
1.8 KiB
TypeScript
import type { Component } from 'vue'
|
|
|
|
export default {
|
|
// Account
|
|
'auth-method-added': () => import('./account/AuthenticationMethodAdded.vue'),
|
|
'auth-method-removed': () => import('./account/AuthenticationMethodRemoved.vue'),
|
|
'email-changed': () => import('./account/EmailChanged.vue'),
|
|
'password-changed': () => import('./account/PasswordChanged.vue'),
|
|
'password-removed': () => import('./account/PasswordRemoved.vue'),
|
|
'payment-failed': () => import('./account/PaymentFailed.vue'),
|
|
'reset-password': () => import('./account/ResetPassword.vue'),
|
|
'two-factor-added': () => import('./account/TwoFactorAdded.vue'),
|
|
'two-factor-removed': () => import('./account/TwoFactorRemoved.vue'),
|
|
'verify-email': () => import('./account/VerifyEmail.vue'),
|
|
'login-new-device': () => import('./account/LoginNewDevice.vue'),
|
|
'payout-available': () => import('./account/PayoutAvailable.vue'),
|
|
'personal-access-token-created': () => import('./account/PATCreated.vue'),
|
|
|
|
// Subscriptions
|
|
'subscription-tax-change': () => import('./account/SubscriptionTaxChange.vue'),
|
|
|
|
// Moderation
|
|
'report-submitted': () => import('./moderation/ReportSubmitted.vue'),
|
|
'report-status-updated': () => import('./moderation/ReportStatusUpdated.vue'),
|
|
'moderation-thread-message-received': () =>
|
|
import('./moderation/ModerationThreadMessageReceived.vue'),
|
|
|
|
// Project
|
|
'project-status-updated-neutral': () => import('./project/ProjectStatusUpdatedNeutral.vue'),
|
|
'project-status-approved': () => import('./project/ProjectStatusApproved.vue'),
|
|
'project-invited': () => import('./project/ProjectInvited.vue'),
|
|
'project-transferred': () => import('./project/ProjectTransferred.vue'),
|
|
|
|
// Organizations
|
|
'organization-invited': () => import('./organization/OrganizationInvited.vue'),
|
|
} as Record<string, () => Promise<{ default: Component }>>
|