Configurable Back reference (#848)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev
2022-01-21 10:05:55 +01:00
committed by GitHub
parent ea19fe2bbf
commit 5f5dc63d21
43 changed files with 786 additions and 238 deletions
+7 -1
View File
@@ -22,6 +22,7 @@ import task from '@anticrm/task-resources/src/plugin'
import type { AnyComponent } from '@anticrm/ui'
import { Application } from '@anticrm/workbench'
import type { Action } from '@anticrm/view'
import { ObjectSearchCategory, ObjectSearchFactory } from '@anticrm/model-presentation'
export default mergeIds(taskId, task, {
app: {
@@ -85,12 +86,17 @@ export default mergeIds(taskId, task, {
MarkAsUndone: '' as IntlString,
Kanban: '' as IntlString,
ApplicationLabelTask: '' as IntlString,
Projects: '' as IntlString
Projects: '' as IntlString,
SearchTask: '' as IntlString
},
space: {
TasksPublic: '' as Ref<Space>
},
template: {
DefaultProject: '' as Ref<KanbanTemplate>
},
completion: {
IssueQuery: '' as Resource<ObjectSearchFactory>,
IssueCategory: '' as Ref<ObjectSearchCategory>
}
})