Added page layouts
This commit is contained in:
55
backend/src/page-layout/page-layout.controller.ts
Normal file
55
backend/src/page-layout/page-layout.controller.ts
Normal file
@@ -0,0 +1,55 @@
|
||||
import {
|
||||
Controller,
|
||||
Get,
|
||||
Post,
|
||||
Body,
|
||||
Patch,
|
||||
Param,
|
||||
Delete,
|
||||
UseGuards,
|
||||
Query,
|
||||
} from '@nestjs/common';
|
||||
import { PageLayoutService } from './page-layout.service';
|
||||
import { CreatePageLayoutDto, UpdatePageLayoutDto } from './dto/page-layout.dto';
|
||||
import { JwtAuthGuard } from '../auth/jwt-auth.guard';
|
||||
import { TenantId } from '../tenant/tenant.decorator';
|
||||
|
||||
@Controller('page-layouts')
|
||||
@UseGuards(JwtAuthGuard)
|
||||
export class PageLayoutController {
|
||||
constructor(private readonly pageLayoutService: PageLayoutService) {}
|
||||
|
||||
@Post()
|
||||
create(@TenantId() tenantId: string, @Body() createPageLayoutDto: CreatePageLayoutDto) {
|
||||
return this.pageLayoutService.create(tenantId, createPageLayoutDto);
|
||||
}
|
||||
|
||||
@Get()
|
||||
findAll(@TenantId() tenantId: string, @Query('objectId') objectId?: string) {
|
||||
return this.pageLayoutService.findAll(tenantId, objectId);
|
||||
}
|
||||
|
||||
@Get('default/:objectId')
|
||||
findDefaultByObject(@TenantId() tenantId: string, @Param('objectId') objectId: string) {
|
||||
return this.pageLayoutService.findDefaultByObject(tenantId, objectId);
|
||||
}
|
||||
|
||||
@Get(':id')
|
||||
findOne(@TenantId() tenantId: string, @Param('id') id: string) {
|
||||
return this.pageLayoutService.findOne(tenantId, id);
|
||||
}
|
||||
|
||||
@Patch(':id')
|
||||
update(
|
||||
@TenantId() tenantId: string,
|
||||
@Param('id') id: string,
|
||||
@Body() updatePageLayoutDto: UpdatePageLayoutDto,
|
||||
) {
|
||||
return this.pageLayoutService.update(tenantId, id, updatePageLayoutDto);
|
||||
}
|
||||
|
||||
@Delete(':id')
|
||||
remove(@TenantId() tenantId: string, @Param('id') id: string) {
|
||||
return this.pageLayoutService.remove(tenantId, id);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user