changes for easier kits integration

This commit is contained in:
Jannik Streek
2022-04-09 08:58:22 +02:00
parent 08caa4cefc
commit 1086b69595
4 changed files with 28 additions and 9 deletions

View File

@ -38,6 +38,8 @@ export class RoomsController {
@Put(':id')
async create(@Param() params, @Body() payload: Buffer) {
console.log(payload)
console.log(params)
const id = params.id;
await this.storageService.set(id, payload, this.namespace);
this.logger.debug(`Created room ${id}`);