platform/plugins/guest-resources/src/plugin.ts
Denis Bykhov 167ad3378b
Remove extra strings (#5603)
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
2024-05-15 22:41:21 +07:00

14 lines
395 B
TypeScript

import guest, { guestId } from '@hcengineering/guest'
import { type IntlString, mergeIds } from '@hcengineering/platform'
export default mergeIds(guestId, guest, {
string: {
CreatePublicLink: '' as IntlString,
PublicLink: '' as IntlString,
Revoke: '' as IntlString,
Copy: '' as IntlString,
RevokeConfirmation: '' as IntlString,
LinkWasRevoked: '' as IntlString
}
})