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

teableio / teable / 10042147790

22 Jul 2024 01:51PM UTC coverage: 82.539% (-0.002%) from 82.541%
10042147790

push

github

web-flow
feat: query builder for developer (#743)

4286 of 4487 branches covered (95.52%)

0 of 1 new or added line in 1 file covered. (0.0%)

28405 of 34414 relevant lines covered (82.54%)

1222.16 hits per line

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

31.58
/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) {}
70✔
10

70✔
11
  @ApiExcludeEndpoint()
70✔
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/?*',
×
NEW
32
    'developer/?*',
×
33
    'public/?*',
×
34
  ])
×
35
  public async home(@Req() req: express.Request, @Res() res: express.Response) {
×
36
    await this.nextService.server.getRequestHandler()(req, res);
×
37
  }
×
38
}
70✔
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