From 2d13e293b5936ffcf0ec9aee0f96b52003ce1de8 Mon Sep 17 00:00:00 2001 From: Klaus <88317742+l4u532@users.noreply.github.com> Date: Sun, 19 Mar 2023 18:24:31 +0100 Subject: [PATCH] Add UIAA as Grading Scale UIAA is the dominant grading scale in Central Europe. Also see https://github.com/OpenBeta/openbeta-graphql/pull/252. --- src/GradeScale.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/GradeScale.ts b/src/GradeScale.ts index 044c56f..0b06ebc 100644 --- a/src/GradeScale.ts +++ b/src/GradeScale.ts @@ -17,7 +17,8 @@ export const GradeScales = { VSCALE: 'vscale', YDS: 'yds', FONT: 'font', - FRENCH: 'french' + FRENCH: 'french', + UIAA: 'uiaa' } as const export type GradeScalesTypes = typeof GradeScales[keyof typeof GradeScales]