mirror of
https://github.com/Shadowfita/docmost.git
synced 2025-11-12 07:42:34 +10:00
* page import feature * make file interceptor common * replace @tiptap/html * update tiptap version * reduce table margin * update tiptap version * switch to upstream drag handle lib (fixes table dragging) * WIP * Page import module and other fixes * working page imports * extract page title from h1 heading * finalize page imports * cleanup unused imports * add menu arrow
10 lines
254 B
TypeScript
10 lines
254 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { ImportService } from './import.service';
|
|
import { ImportController } from './import.controller';
|
|
|
|
@Module({
|
|
providers: [ImportService],
|
|
controllers: [ImportController]
|
|
})
|
|
export class ImportModule {}
|