Skip to content

Commit

Permalink
fix: controller
Browse files Browse the repository at this point in the history
  • Loading branch information
Angular2Guy committed Apr 2, 2024
1 parent e691db2 commit 9e2cbb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/pkd/controller/basecontroller.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func Start(embeddedFiles fs.FS) {
router.POST("/gasstation/search/location", token.CheckToken, searchGasStationLocation)
router.GET("/usernotification/new/:useruuid", token.CheckToken, getNewUserNotifications)
router.GET("/usernotification/current/:useruuid", token.CheckToken, getCurrentUserNotifications)
router.GET("/postcode/countydata/:id", getCountyDataByIdWithTimeSlots)
router.GET("/postcode/countydata/:id", token.CheckToken, getCountyDataByIdWithTimeSlots)

myPort := strings.TrimSpace(os.Getenv("PORT"))
portNum, err := strconv.ParseInt(myPort, 10, 0)
Expand Down

0 comments on commit 9e2cbb1

Please sign in to comment.