mirror of
https://github.com/docmost/docmost.git
synced 2026-08-28 01:07:08 +08:00
feat: add version check (#922)
* Add version endpoint * version indicator * refetch * * Translate strings * Handle error
This commit is contained in:
@@ -1,7 +1,10 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { RobotsTxtController } from './robots.txt.controller';
|
||||
import { VersionController } from './version.controller';
|
||||
import { VersionService } from './version.service';
|
||||
|
||||
@Module({
|
||||
controllers: [RobotsTxtController],
|
||||
controllers: [RobotsTxtController, VersionController],
|
||||
providers: [VersionService],
|
||||
})
|
||||
export class SecurityModule {}
|
||||
|
||||
Reference in New Issue
Block a user