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

safe-global / safe-client-gateway / 12377183907

17 Dec 2024 04:25PM UTC coverage: 89.178% (-0.9%) from 90.091%
12377183907

Pull #2194

github

web-flow
Update migrations/deprecated/00013_targeted_messaging_add_outreach_2/index.sql

Co-authored-by: Aaron Cook <aaron@safe.global>
Pull Request #2194: Allow targeting of all safes for outreach campaigns

2781 of 3496 branches covered (79.55%)

Branch coverage included in aggregate %.

18 of 22 new or added lines in 6 files covered. (81.82%)

93 existing lines in 30 files now uncovered.

9456 of 10226 relevant lines covered (92.47%)

427.34 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';
94✔
2
import { ApiOkResponse, ApiTags } from '@nestjs/swagger';
94✔
3
import { DataDecodedService } from '@/routes/data-decode/data-decoded.service';
94✔
4
import { DataDecoded } from '@/routes/data-decode/entities/data-decoded.entity';
94✔
5
import {
94✔
6
  TransactionDataDto,
7
  TransactionDataDtoSchema,
8
} from '@/routes/common/entities/transaction-data.dto.entity';
9
import { ValidationPipe } from '@/validation/pipes/validation.pipe';
94✔
10

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

19
  @ApiOkResponse({ type: DataDecoded })
20
  @HttpCode(200)
21
  @Post('chains/:chainId/data-decoder')
22
  async getDataDecoded(
94✔
23
    @Param('chainId') chainId: string,
24
    @Body(new ValidationPipe(TransactionDataDtoSchema))
25
    getDataDecodedDto: TransactionDataDto,
26
  ): Promise<DataDecoded> {
UNCOV
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