mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 11:01:15 +00:00
21 lines
625 B
TypeScript
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);
|
|
}
|
|
}
|