Skip to content

Commit

Permalink
feat(api): ✨ add subscription serializer
Browse files Browse the repository at this point in the history
  • Loading branch information
rasouza authored and mathiasberggren committed Apr 23, 2024
1 parent 7bb32da commit 4ff5d44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/api/src/subscriptions/subscriptions.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { SubscriptionResponse } from './entities/subscription.entity'
@ApiTags('subscriptions')
@Controller('subscriptions')
export class SubscriptionsController {
constructor (private readonly subscriptionsService: SubscriptionsService, private readonly logger: Logger) {}
constructor (private readonly subscriptionsService: SubscriptionsService) {}

@Post()
async create (@Body() createSubscriptionDto: CreateSubscriptionDto) {
Expand Down

0 comments on commit 4ff5d44

Please sign in to comment.