remove public puzzle.title from private ConfigModel

This commit is contained in:
Jörn-Michael Miehe 2023-09-14 15:00:34 +00:00
parent 47eb42f0f5
commit e9ef7f67e3
3 changed files with 2 additions and 5 deletions

View file

@ -21,7 +21,6 @@ async def is_admin(
class ConfigModel(BaseModel):
class __Puzzle(BaseModel):
title: str
solution: str
begin: date
end: date
@ -65,7 +64,6 @@ 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

View file

@ -7,7 +7,8 @@
<h4>Rätsel</h4>
<dl>
<dt>Titel</dt>
<dd>{{ config_model.puzzle.title }}</dd>
<!-- TODO -->
<dd>Advent22</dd>
<dt>Lösung</dt>
<dd>{{ config_model.puzzle.solution }}</dd>
@ -140,7 +141,6 @@ interface Credentials {
export default class extends Vue {
public config_model: ConfigModel = {
puzzle: {
title: "Advent22",
solution: "ABCDEFGHIJKLMNOPQRSTUVWX",
begin: "01.12.2023",
end: "24.12.2023",

View file

@ -1,6 +1,5 @@
export interface ConfigModel {
puzzle: {
title: string;
solution: string;
begin: string;
end: string;