Basic mentions support (#832)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev
2022-01-19 10:04:30 +01:00
committed by GitHub
parent b56f3bba7c
commit 0d8daf2fea
96 changed files with 1006 additions and 1604 deletions
-4
View File
@@ -17,8 +17,6 @@ import { addLocation } from '@anticrm/platform'
import login from '@anticrm/login'
import { clientId } from '@anticrm/client'
import { serverChunterId } from '@anticrm/server-chunter'
import { serverRecruitId } from '@anticrm/server-recruit'
import { setMetadata } from '@anticrm/platform'
@@ -30,8 +28,6 @@ export function configurePlatformDev() {
setMetadata(login.metadata.OverrideEndpoint, process.env.LOGIN_ENDPOINT_DEV)
console.log('Use DEV server')
addLocation(clientId, () => import(/* webpackChunkName: "client-dev" */ '@anticrm/dev-client-resources'))
addLocation(serverChunterId, () => import(/* webpackChunkName: "server-chunter" */ '@anticrm/dev-server-chunter-resources'))
addLocation(serverRecruitId, () => import(/* webpackChunkName: "server-recruit" */ '@anticrm/server-recruit-resources'))
// Set devmodel to hook client to be able to present all activity
enableDevModel()