2025-03-05
Some checks failed
ci/woodpecker/push/publish_instable Pipeline failed

This commit is contained in:
gcch 2025-03-05 09:10:16 +01:00
commit ad01868a9f
23 changed files with 328 additions and 97 deletions

View file

@ -20,3 +20,14 @@ export const DIARY_ENTRY_STATES = {
/** Un média ayant été regardé au mois une fois. */
WATCHED: "watched",
} as const;
export const APPRECIATION_STATES = {
/** Oeuvre appréciée. */
APPRECIATED: "appreciated",
/** Oeuvre non appréciée (détestée). */
DISLIKED: "disliked",
/** Oeuvre laissant de marbre. */
NEUTRAL: "neutral",
/** Appréciation inconnue. */
UNKNOWN: "unknown",
} as const;