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

teableio / teable / 10280481712

07 Aug 2024 08:04AM UTC coverage: 82.603% (+64.9%) from 17.728%
10280481712

Pull #721

github

web-flow
Merge da07cce18 into 6131ee284
Pull Request #721: feat: sql query

4345 of 4566 branches covered (95.16%)

663 of 709 new or added lines in 21 files covered. (93.51%)

29029 of 35143 relevant lines covered (82.6%)

1199.61 hits per line

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

30.77
/apps/nestjs-backend/src/features/next/next.controller.ts
1
import { Controller, Get, Req, Res } from '@nestjs/common';
2✔
2
import { ApiExcludeEndpoint } from '@nestjs/swagger';
2✔
3
import express from 'express';
2✔
4
import { Public } from '../auth/decorators/public.decorator';
2✔
5
import { NextService } from './next.service';
2✔
6

2✔
7
@Controller('/')
2✔
8
export class NextController {
2✔
9
  constructor(private nextService: NextService) {}
72✔
10

72✔
11
  @ApiExcludeEndpoint()
72✔
12
  @Public()
×
13
  @Get([
×
14
    '/',
×
15
    'favicon.ico',
×
16
    '_next/*',
×
17
    '__nextjs*',
×
18
    'images/*',
×
19
    'home',
×
20
    '404/*',
×
21
    '403/?*',
×
22
    '402/?*',
×
23
    'api/((?!table).)*',
×
24
    'space/?*',
×
25
    'auth/?*',
×
26
    'base/?*',
×
27
    'invite/?*',
×
28
    'share/?*',
×
29
    'setting/?*',
×
30
    'admin/?*',
×
31
    'oauth/?*',
×
32
    'developer/?*',
×
33
    'public/?*',
×
NEW
34
    'plugin/?*',
×
35
  ])
×
36
  public async home(@Req() req: express.Request, @Res() res: express.Response) {
×
37
    await this.nextService.server.getRequestHandler()(req, res);
×
38
  }
×
39
}
72✔
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

© 2025 Coveralls, Inc