# Introduction A while ago we migrated view from workspace to metadata Their standard objects workspace entities declaration remained we can now remove them ## Deprecating commands before 1.5 The view migration command from workspace to metadata was introduced in `1.5.0`. Removing the `baseWorkspaceEntity` make this command obsolete. If tomorrow twenty handles auto upgrade in latest and a user having an instance in `1.3.0` starts auto-upgrading he won't be able to migrate his views ( that's why we should not support upgrade before 1.5 anymore here ) We will have the same use case with FavoritesFolders
23 lines
746 B
TypeScript
23 lines
746 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { CalendarModule } from 'src/modules/calendar/calendar.module';
|
|
import { ConnectedAccountModule } from 'src/modules/connected-account/connected-account.module';
|
|
import { FavoriteFolderModule } from 'src/modules/favorite-folder/favorite-folder.module';
|
|
import { FavoriteModule } from 'src/modules/favorite/favorite.module';
|
|
import { MessagingModule } from 'src/modules/messaging/messaging.module';
|
|
import { WorkflowModule } from 'src/modules/workflow/workflow.module';
|
|
|
|
@Module({
|
|
imports: [
|
|
MessagingModule,
|
|
CalendarModule,
|
|
ConnectedAccountModule,
|
|
WorkflowModule,
|
|
FavoriteFolderModule,
|
|
FavoriteModule,
|
|
],
|
|
providers: [],
|
|
exports: [],
|
|
})
|
|
export class ModulesModule {}
|