Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev
2022-02-03 10:03:53 +01:00
committed by GitHub
parent e7c0f2406a
commit 8c51a4ec2c
12 changed files with 233 additions and 174 deletions
+10 -2
View File
@@ -13,12 +13,20 @@
// limitations under the License.
//
import { mergeIds } from '@anticrm/platform'
import { Space } from '@anticrm/core'
import { IntlString, mergeIds, Resource } from '@anticrm/platform'
import { AnyComponent } from '@anticrm/ui'
import workbench, { workbenchId } from '@anticrm/workbench'
export default mergeIds(workbenchId, workbench, {
component: {
ApplicationPresenter: '' as AnyComponent
ApplicationPresenter: '' as AnyComponent,
Archive: '' as AnyComponent
},
string: {
Archive: '' as IntlString
},
function: {
HasArchiveSpaces: '' as Resource<(spaces: Space[]) => boolean>
}
})