Fix token packages endpoint authentication - make it truly public

This commit is contained in:
Nixon 2025-09-20 16:58:51 +02:00
parent 528be6027a
commit ce75ee5c61

View File

@ -56,6 +56,7 @@ export class PaymentController {
@Summary("Get available token packages for purchase")
@Description("Returns all active token packages that users can purchase")
@Returns(200, Array).Description("List of available token packages")
@Security() // No authentication required
async getTokenPackages() {
const connection = await pool.getConnection();