platform/server/account/src/plugin.ts
Andrey Sobolev 702f30ee2a
UBERF-7603: Support multiple transactors (#6086)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2024-07-19 01:04:48 +07:00

30 lines
745 B
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>
},
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
}
})