Skip to content

Commit

Permalink
feat(ci/cd): implementacion incial del CI
Browse files Browse the repository at this point in the history
  • Loading branch information
marsal committed May 31, 2024
1 parent 86699ed commit 9f9fa21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20.13
v18.0
2 changes: 1 addition & 1 deletion backend/src/users/user-list/user-list.controller.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Controller, Get, UseGuards } from '@nestjs/common';
import { User } from '@prisma/client';
import { UserListService } from './user-list.service';
import { AuthGuard } from '@src/auth/auth.guard';
import { ApiBearerAuth, ApiTags } from '@nestjs/swagger';
import { User } from '../infrastructure/user.repository';

@Controller('user')
@ApiBearerAuth()
Expand Down

0 comments on commit 9f9fa21

Please sign in to comment.