Skip to content

Commit

Permalink
✅ Test Panora SDK Control Action
Browse files Browse the repository at this point in the history
  • Loading branch information
naelob committed Jul 25, 2024
1 parent be34cd6 commit 7d175b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions packages/api/src/app.controller.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import { Controller, Get, UseGuards } from '@nestjs/common';
import { AppService } from './app.service';
import { LoggerService } from '@@core/@core-services/logger/logger.service';
import { ApiKeyAuthGuard } from '@@core/auth/guards/api-key.guard';
import { Controller, Get } from '@nestjs/common';
import { ApiOperation } from '@nestjs/swagger';
import { AppService } from './app.service';

@Controller()
export class AppController {
Expand All @@ -13,7 +12,7 @@ export class AppController {
this.logger.setContext(AppController.name);
}

@ApiOperation({ operationId: 'home' })
@ApiOperation({ operationId: 'hello' })
@Get()
hello(): string {
return this.appService.getHello();
Expand Down
2 changes: 1 addition & 1 deletion packages/api/swagger/swagger-spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.0.0
paths:
/:
get:
operationId: home
operationId: hello
summary: ''
parameters: []
responses:
Expand Down

0 comments on commit 7d175b1

Please sign in to comment.