Skip to content

Commit

Permalink
💬 Change location codes to include city designation
Browse files Browse the repository at this point in the history
  • Loading branch information
Draculente committed Sep 12, 2024
1 parent 81976a9 commit 8058d3c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,17 +132,17 @@ impl Into<APILocation> for Location {
fn into(self) -> APILocation {
match self {
Location::Musikhochschule => APILocation {
code: "MH".to_string(),
code: "HL_MH".to_string(),
name: "Musikhochschule".to_string(),
city: "Lübeck".to_string(),
},
Location::Cafeteria => APILocation {
code: "CA".to_string(),
code: "HL_CA".to_string(),
name: "Cafeteria".to_string(),
city: "Lübeck".to_string(),
},
Location::Mensa => APILocation {
code: "ME".to_string(),
code: "HL_ME".to_string(),
name: "Mensa".to_string(),
city: "Lübeck".to_string(),
},
Expand Down

0 comments on commit 8058d3c

Please sign in to comment.