mirror of
https://github.com/hcengineering/platform.git
synced 2025-05-09 17:05:01 +00:00
* UBER-356 Facility to apply initial workspace Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com> * Don't allow join to source workspace Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com> --------- Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
20 lines
350 B
TypeScript
20 lines
350 B
TypeScript
import { Metadata, plugin, Plugin } from '@hcengineering/platform'
|
|
|
|
/**
|
|
* @public
|
|
*/
|
|
export const toolId = 'tool' as Plugin
|
|
|
|
/**
|
|
* @public
|
|
*/
|
|
const toolPlugin = plugin(toolId, {
|
|
metadata: {
|
|
Endpoint: '' as Metadata<string>,
|
|
Transactor: '' as Metadata<string>,
|
|
InitWorkspace: '' as Metadata<string>
|
|
}
|
|
})
|
|
|
|
export default toolPlugin
|