• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

teableio / teable / 20345584937

18 Dec 2025 05:32PM UTC coverage: 71.825% (-0.2%) from 72.072%
20345584937

Pull #2291

github

web-flow
Merge 902f61063 into 67710df91
Pull Request #2291: feat: template preview (T1306,T1316)

23946 of 26798 branches covered (89.36%)

790 of 1409 new or added lines in 38 files covered. (56.07%)

55 existing lines in 10 files now uncovered.

59527 of 82878 relevant lines covered (71.82%)

4184.61 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

72.22
/apps/nestjs-backend/src/features/plugin/plugin.module.ts
1
import { Module } from '@nestjs/common';
5✔
2
import { JwtModule } from '@nestjs/jwt';
3
import { authConfig, type IAuthConfig } from '../../configs/auth.config';
4
import { AccessTokenModule } from '../access-token/access-token.module';
5
import { StorageModule } from '../attachments/plugins/storage.module';
6
import { UserModule } from '../user/user.module';
7
import { OfficialPluginInitService } from './official/official-plugin-init.service';
8
import { PluginAuthService } from './plugin-auth.service';
9
import { PluginController } from './plugin.controller';
10
import { PluginService } from './plugin.service';
11

12
@Module({
13
  imports: [
5✔
14
    UserModule,
5✔
15
    AccessTokenModule,
5✔
16
    StorageModule,
5✔
17
    JwtModule.registerAsync({
5✔
18
      useFactory: (config: IAuthConfig) => ({
5✔
UNCOV
19
        secret: config.jwt.secret,
×
UNCOV
20
        signOptions: {
×
UNCOV
21
          expiresIn: config.jwt.expiresIn,
×
UNCOV
22
        },
×
UNCOV
23
      }),
×
24
      inject: [authConfig.KEY],
5✔
25
    }),
5✔
26
  ],
5✔
27
  providers: [PluginService, PluginAuthService, OfficialPluginInitService],
5✔
28
  controllers: [PluginController],
5✔
29
})
30
export class PluginModule {}
5✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc