mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-29 03:34:31 +00:00
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
Signed-off-by: Dakshesh Jain <dakshesh.jain14@gmail.com>
39 lines
1.1 KiB
TypeScript
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
|
|
}
|
|
})
|