Files
n8n-enterprise-unlocked/packages/cli/src/controllers/cta.controller.ts
कारतोफ्फेलस्क्रिप्ट™ db4a419c8d refactor(core): Enforce authorization by default on all routes (no-changelog) (#8762)
2024-02-28 17:02:18 +01:00

21 lines
625 B
TypeScript

import express from 'express';
import { Get, RestController } from '@/decorators';
import { AuthenticatedRequest } from '@/requests';
import { CtaService } from '@/services/cta.service';
/**
* Controller for Call to Action (CTA) endpoints. CTAs are certain
* messages that are shown to users in the UI.
*/
@RestController('/cta')
export class CtaController {
constructor(private readonly ctaService: CtaService) {}
@Get('/become-creator')
async getCta(req: AuthenticatedRequest, res: express.Response) {
const becomeCreator = await this.ctaService.getBecomeCreatorCta(req.user.id);
res.json(becomeCreator);
}
}