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

safe-global / safe-client-gateway / 13409143813

19 Feb 2025 09:15AM UTC coverage: 90.84% (-0.3%) from 91.123%
13409143813

push

github

iamacook
fix: add auth tests for invite/role changes and ensure active admin

2975 of 3600 branches covered (82.64%)

Branch coverage included in aggregate %.

10136 of 10833 relevant lines covered (93.57%)

525.81 hits per line

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

90.0
/src/routes/data-decode/data-decoded.controller.ts
1
import { Body, Controller, HttpCode, Param, Post } from '@nestjs/common';
102✔
2
import { ApiOkResponse, ApiTags } from '@nestjs/swagger';
102✔
3
import { DataDecodedService } from '@/routes/data-decode/data-decoded.service';
102✔
4
import { DataDecoded } from '@/routes/data-decode/entities/data-decoded.entity';
102✔
5
import {
102✔
6
  TransactionDataDto,
7
  TransactionDataDtoSchema,
8
} from '@/routes/common/entities/transaction-data.dto.entity';
9
import { ValidationPipe } from '@/validation/pipes/validation.pipe';
102✔
10

11
@ApiTags('data-decoded')
12
@Controller({
13
  path: '',
14
  version: '1',
15
})
16
export class DataDecodedController {
102✔
17
  constructor(private readonly dataDecodedService: DataDecodedService) {}
1,556✔
18

19
  @ApiOkResponse({ type: DataDecoded })
20
  @HttpCode(200)
21
  @Post('chains/:chainId/data-decoder')
22
  async getDataDecoded(
102✔
23
    @Param('chainId') chainId: string,
24
    @Body(new ValidationPipe(TransactionDataDtoSchema))
25
    getDataDecodedDto: TransactionDataDto,
26
  ): Promise<DataDecoded> {
27
    return this.dataDecodedService.getDataDecoded({
×
28
      chainId,
29
      getDataDecodedDto,
30
    });
31
  }
32
}
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