Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
debug: test removing the guard
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiendan committed Sep 21, 2023
1 parent b271c61 commit bedb14a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/backend/src/faucet/faucet.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ import { Body, Controller, Headers, Post, UseGuards } from '@nestjs/common'

import { GetSubnetAssetsDto } from './faucet.dto'
import { FaucetService } from './faucet.service'
import { ThrottlerBehindProxyGuard } from './throttler.guard'
// import { ThrottlerBehindProxyGuard } from './throttler.guard'

@Controller('faucet')
export class FaucetController {
constructor(private faucetService: FaucetService) {}

@Post('getSubnetAssets')
@UseGuards(ThrottlerBehindProxyGuard)
// @UseGuards(ThrottlerBehindProxyGuard)
async getSubnetAssets(
@Body() getSubnetAssetsDto: GetSubnetAssetsDto,
@Headers('traceparent') traceparent: string
Expand Down

0 comments on commit bedb14a

Please sign in to comment.