2023-01-21 05:14:55 +01:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2023-02-09 03:46:08 +01:00
|
|
|
import { AchievementService, ACHIEVEMENT_TYPES } from '@/core/AchievementService.js';
|
2023-01-21 05:14:55 +01:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
requireCredential: true,
|
|
|
|
} as const;
|
|
|
|
|
|
|
|
export const paramDef = {
|
|
|
|
type: 'object',
|
|
|
|
properties: {
|
2023-02-09 03:46:08 +01:00
|
|
|
name: { type: 'string', enum: ACHIEVEMENT_TYPES },
|
2023-01-21 05:14:55 +01:00
|
|
|
},
|
|
|
|
required: ['name'],
|
|
|
|
} as const;
|
|
|
|
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
private achievementService: AchievementService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
await this.achievementService.create(me.id, ps.name);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|