mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2024-11-22 15:53:01 +00:00
config.puzzle.title
This commit is contained in:
parent
4686ab9c56
commit
764c6b16fb
4 changed files with 8 additions and 2 deletions
|
@ -25,6 +25,9 @@ class Server(BaseModel):
|
|||
|
||||
|
||||
class Puzzle(BaseModel):
|
||||
# Titel
|
||||
title: str
|
||||
|
||||
# Lösungswort
|
||||
solution: str
|
||||
|
||||
|
|
|
@ -21,6 +21,7 @@ async def is_admin(
|
|||
|
||||
class ConfigModel(BaseModel):
|
||||
class __Puzzle(BaseModel):
|
||||
title: str
|
||||
solution: str
|
||||
begin: date
|
||||
end: date
|
||||
|
@ -64,6 +65,7 @@ async def get_config_model(
|
|||
return ConfigModel.model_validate(
|
||||
{
|
||||
"puzzle": {
|
||||
"title": cfg.puzzle.title,
|
||||
"solution": cfg.puzzle.solution,
|
||||
"begin": date.today(), # TODO
|
||||
"end": date.today(), # TODO
|
||||
|
|
|
@ -12,8 +12,7 @@
|
|||
<h4>Rätsel</h4>
|
||||
<dl>
|
||||
<dt>Titel</dt>
|
||||
<!-- TODO -->
|
||||
<dd>Adventskalender 2023</dd>
|
||||
<dd>{{ config_model.puzzle.title }}</dd>
|
||||
|
||||
<dt>Lösung</dt>
|
||||
<dd>{{ config_model.puzzle.solution }}</dd>
|
||||
|
@ -137,6 +136,7 @@ export default class extends Vue {
|
|||
public is_loaded = false;
|
||||
public config_model: ConfigModel = {
|
||||
puzzle: {
|
||||
title: "Advent22",
|
||||
solution: "ABCDEFGHIJKLMNOPQRSTUVWX",
|
||||
begin: "01.12.2023",
|
||||
end: "24.12.2023",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
export interface ConfigModel {
|
||||
puzzle: {
|
||||
title: string;
|
||||
solution: string;
|
||||
begin: string;
|
||||
end: string;
|
||||
|
|
Loading…
Reference in a new issue