feat(environment): add environment CRUD module and wire into auth login

This commit is contained in:
2026-04-07 13:00:54 +03:00
parent 49dd1aa14c
commit de48a912d4
12 changed files with 208 additions and 24 deletions
@@ -0,0 +1,4 @@
import { PartialType } from '@nestjs/swagger';
import { CreateEnvironmentDto } from './create-environment.dto';
export class UpdateEnvironmentDto extends PartialType(CreateEnvironmentDto) {}