feat: Nudge users to become template creators if eligible (#8357)

This commit is contained in:
Tomi Turtiainen
2024-01-17 19:07:34 +02:00
committed by GitHub
parent 3912c5e7ab
commit 99457019f7
14 changed files with 385 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
import express from 'express';
import { Authorized, 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.
*/
@Authorized()
@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);
}
}