chore: Install project dependencies.
Some checks failed
Build and Deploy / build-and-deploy (push) Has been cancelled

This commit is contained in:
gitmuhammedalbayrak
2025-11-24 02:59:20 +03:00
parent a27dd3c675
commit ff7bd34355
27 changed files with 13310 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import { Controller, Get, Post, Body, Param } from '@nestjs/common';
import { TenantsService } from './tenants.service';
import { Tenant } from './tenant.entity';
@Controller('tenants')
export class TenantsController {
constructor(private readonly tenantsService: TenantsService) { }
@Post()
create(@Body('name') name: string): Promise<Tenant> {
return this.tenantsService.create(name);
}
@Get()
findAll(): Promise<Tenant[]> {
return this.tenantsService.findAll();
}
@Get(':id')
findOne(@Param('id') id: string): Promise<Tenant | null> {
return this.tenantsService.findOne(id);
}
}