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

safe-global / safe-client-gateway / 13055878609

30 Jan 2025 03:43PM UTC coverage: 90.886% (-0.05%) from 90.933%
13055878609

push

github

PooyaRaki
.

2944 of 3555 branches covered (82.81%)

Branch coverage included in aggregate %.

8 of 19 new or added lines in 3 files covered. (42.11%)

9730 of 10390 relevant lines covered (93.65%)

505.21 hits per line

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

80.0
/src/routes/users/users.controller.ts
1
import { ApiTags } from '@nestjs/swagger';
112✔
2
import { Controller, Get, UseGuards } from '@nestjs/common';
112✔
3
import { AuthGuard } from '@/routes/auth/guards/auth.guard';
112✔
4
import { Auth } from '@/routes/auth/decorators/auth.decorator';
112✔
5
import { AuthPayload } from '@/domain/auth/entities/auth-payload.entity';
112✔
6
import { UsersService } from '@/routes/users/users.service';
112✔
7
import { UserWithWallets } from '@/routes/users/entities/user-with-wallets.entity';
8

9
@ApiTags('users')
10
@Controller({ path: 'users', version: '1' })
11
export class UsersController {
112✔
NEW
12
  public constructor(private readonly usersService: UsersService) {}
×
13

14
  @Get()
15
  @UseGuards(AuthGuard)
16
  public get(@Auth() authPayload: AuthPayload): Promise<UserWithWallets> {
112✔
NEW
17
    return this.usersService.getUserWithWallet(authPayload);
×
18
  }
19
}
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