Files
twenty/packages/twenty-server/src/modules/view/view.module.ts
T
Marie 8d33264a7d Migrate fields of deprecated type LINK to type LINKS (#6332)
Closes #5909.

Adding a command to migrate fields of type Link to fields of type Links,
including their data.
2024-07-23 09:57:30 +02:00

11 lines
222 B
TypeScript

import { Module } from '@nestjs/common';
import { ViewService } from 'src/modules/view/services/view.service';
@Module({
imports: [],
providers: [ViewService],
exports: [ViewService],
})
export class ViewModule {}