Skip to content

Commit

Permalink
chore(ropecon2024): GoH program as topic
Browse files Browse the repository at this point in the history
  • Loading branch information
knomepasi committed Jun 13, 2024
1 parent 929a7b2 commit bb3d646
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions backend/program_v2/importers/ropecon2024.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ def get_dimensions(self):
("music", "Musiikki", "Music"),
("penandpaper", "Pöytäroolipelit", "Pen & Paper RPG"),
("boffering", "Boffaus", "Boffering"),
("goh", "Kunniavieraat", "Guests of Honor"),
]
],
),
Expand Down Expand Up @@ -231,6 +232,9 @@ def get_topic_dimension_value(self, programme: Programme) -> list[str]:
if "boff" in prog_title_lower:
values.add("boffering")

if "Kunniavieras" in tag_titles_fi:
values.add("goh")

return list(values)

def get_konsti_dimension_value(self, programme: Programme) -> list[str]:
Expand Down

0 comments on commit bb3d646

Please sign in to comment.