aboutsummaryrefslogtreecommitdiff
path: root/controllers/preferences.go
diff options
context:
space:
mode:
authorBobby <[email protected]>2025-07-12 20:01:55 +0530
committerBobby <[email protected]>2025-07-12 20:01:55 +0530
commitc97589bd1ae1d2366c4fb070264d26c8b8d8b7c5 (patch)
tree7940dede46aa6571d892065ed3f95b676ed20610 /controllers/preferences.go
parenta896b3fe27579993c0cb761832242d806d3e9438 (diff)
downloadimageboard-c97589bd1ae1d2366c4fb070264d26c8b8d8b7c5.tar.xz
imageboard-c97589bd1ae1d2366c4fb070264d26c8b8d8b7c5.zip
add cookie based preferences
Diffstat (limited to 'controllers/preferences.go')
-rw-r--r--controllers/preferences.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/controllers/preferences.go b/controllers/preferences.go
index 86e0fb3..042e810 100644
--- a/controllers/preferences.go
+++ b/controllers/preferences.go
@@ -6,7 +6,7 @@ import (
"github.com/gofiber/fiber/v2"
)
-func PreferencesController(ctx *fiber.Ctx) error {
+func PreferencesPageController(ctx *fiber.Ctx) error {
ctx.Locals("Title", "Site Preferences")
return shortcuts.Render(ctx, "preferences", nil)
}