Skip to content

Commit

Permalink
Remove Stammitsch-filter when adding talks for the time being
Browse files Browse the repository at this point in the history
  • Loading branch information
cherti committed May 30, 2020
1 parent c5a3380 commit fb9a461
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions c14h/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -228,10 +228,11 @@ func handlePost(res http.ResponseWriter, req *http.Request) {
return
}

if !date.IsZero() && date.Day() < 8 {
writeError(400, res, "This is the first thursday of the month. Since we currently have our Stammtisch there, you can't give a talk.")
return
}
// TODO: roll back once Stammtisch is a thing again
//if !date.IsZero() && date.Day() < 8 {
// writeError(400, res, "This is the first thursday of the month. Since we currently have our Stammtisch there, you can't give a talk.")
// return
//}

id, err := strconv.Atoi(idStr)
if err != nil {
Expand Down

0 comments on commit fb9a461

Please sign in to comment.