platform/plugins/guest-resources/src/plugin.ts

14 lines
395 B
TypeScript
Raw Normal View History

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
}
})