You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/ui/constant/contest.js

19 lines
375 B
JavaScript

5 years ago
import attachObjectMeta from './util/objectMeta';
export const RULE_OI = 'oi';
export const RULE_ACM = 'acm';
export const RULE_HOMEWORK = 'homework';
5 years ago
export const RULES = [
5 years ago
RULE_OI,
RULE_ACM,
RULE_HOMEWORK,
5 years ago
];
export const RULE_TEXTS = {
[RULE_OI]: 'OI',
[RULE_ACM]: 'ACM/ICPC',
[RULE_HOMEWORK]: 'Assignment',
5 years ago
};
attachObjectMeta(RULE_TEXTS, 'intKey', true);