Rework reviews (#1156)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev
2022-03-18 13:37:49 +07:00
committed by GitHub
parent c37d6b8e0e
commit a4af938871
85 changed files with 1422 additions and 522 deletions
+3
View File
@@ -35,6 +35,7 @@ import { inventoryId } from '@anticrm/inventory'
import { templatesId } from '@anticrm/templates'
import { notificationId } from '@anticrm/notification'
import { tagsId } from '@anticrm/tags'
import { calendarId } from '@anticrm/calendar'
import rekoni from '@anticrm/rekoni'
import '@anticrm/login-assets'
@@ -54,6 +55,7 @@ import '@anticrm/inventory-assets'
import '@anticrm/templates-assets'
import '@anticrm/notification-assets'
import '@anticrm/tags-assets'
import '@anticrm/calendar-assets'
import { setMetadata } from '@anticrm/platform'
export async function configurePlatform() {
@@ -95,4 +97,5 @@ export async function configurePlatform() {
addLocation(templatesId, () => import(/* webpackChunkName: "templates" */ '@anticrm/templates-resources'))
addLocation(notificationId, () => import(/* webpackChunkName: "notification" */ '@anticrm/notification-resources'))
addLocation(tagsId, () => import(/* webpackChunkName: "tags" */ '@anticrm/tags-resources'))
addLocation(calendarId, () => import(/* webpackChunkName: "calendar" */ '@anticrm/calendar-resources'))
}