8d33264a7d
Closes #5909. Adding a command to migrate fields of type Link to fields of type Links, including their data.
11 lines
222 B
TypeScript
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 {}
|