mirror of
https://github.com/hcengineering/platform.git
synced 2025-03-16 19:23:19 +00:00
14 lines
395 B
TypeScript
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
|
|
}
|
|
})
|