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

teableio / teable / 20303078599

17 Dec 2025 12:38PM UTC coverage: 71.688% (-0.1%) from 71.814%
20303078599

Pull #2291

github

web-flow
Merge 28bbb5288 into 482ecbf1a
Pull Request #2291: feat: template preview (T1306)

23649 of 26500 branches covered (89.24%)

247 of 532 new or added lines in 28 files covered. (46.43%)

20 existing lines in 4 files now uncovered.

58836 of 82072 relevant lines covered (71.69%)

4190.32 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