platform/server/account/src/plugin.ts
Dakshesh Jain 6c9cb78493
Some checks are pending
CI / build (push) Waiting to run
CI / svelte-check (push) Blocked by required conditions
CI / formatting (push) Blocked by required conditions
CI / test (push) Blocked by required conditions
CI / uitest (push) Waiting to run
CI / uitest-pg (push) Waiting to run
CI / uitest-qms (push) Waiting to run
CI / docker-build (push) Blocked by required conditions
CI / dist-build (push) Blocked by required conditions
feat: resend invitation to kicked employee (#7472)
Signed-off-by: Dakshesh Jain <dakshesh.jain14@gmail.com>
2024-12-20 16:39:02 +07:00

39 lines
1.1 KiB
TypeScript

import { IntlString, Metadata, plugin, Plugin } from '@hcengineering/platform'
/**
* @public
*/
export const accountId = 'account' as Plugin
/**
* @public
*/
export const accountPlugin = plugin(accountId, {
metadata: {
FrontURL: '' as Metadata<string>,
SES_URL: '' as Metadata<string>,
ProductName: '' as Metadata<string>,
Transactors: '' as Metadata<string>,
OtpTimeToLiveSec: '' as Metadata<number>,
OtpRetryDelaySec: '' as Metadata<number>,
WsLivenessDays: '' as Metadata<number>
},
string: {
ConfirmationText: '' as IntlString,
ConfirmationHTML: '' as IntlString,
ConfirmationSubject: '' as IntlString,
RecoveryText: '' as IntlString,
RecoveryHTML: '' as IntlString,
RecoverySubject: '' as IntlString,
InviteText: '' as IntlString,
InviteHTML: '' as IntlString,
InviteSubject: '' as IntlString,
ResendInviteText: '' as IntlString,
ResendInviteHTML: '' as IntlString,
ResendInviteSubject: '' as IntlString,
OtpText: '' as IntlString,
OtpHTML: '' as IntlString,
OtpSubject: '' as IntlString
}
})