diff --git a/src/domains/lolrates/lolRates/LolRatesController.ts b/src/domains/lolrates/lolRates/LolRatesController.ts index 57c7daf..ce8fee9 100644 --- a/src/domains/lolrates/lolRates/LolRatesController.ts +++ b/src/domains/lolrates/lolRates/LolRatesController.ts @@ -10,7 +10,7 @@ export class LolRatesController { ) {} @Get("/lolRates") - async getDocs() { + async getLolRates() { const allWinrates = (await this.lolRateRepo.findWinrates()).map((item) => { let count = 0 if (item.uggWin) count++ diff --git a/src/types/domain/lolates/SkillLevelTypes.ts b/src/types/domain/lolates/SkillLevelTypes.ts index 0fb2c2d..163780d 100644 --- a/src/types/domain/lolates/SkillLevelTypes.ts +++ b/src/types/domain/lolates/SkillLevelTypes.ts @@ -1 +1,4 @@ -export type SkillLevelTypes = "OP" | "Decent/Practice"; +export type SkillLevelTypes = + | "OP" + | "Decent/Practice" + | "Training recommendation"