aboutsummaryrefslogtreecommitdiff
path: root/controllers/preferences.go
blob: 042e810c099f0eeef6a18db32abeb2af5abc93e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package controllers

import (
	"imageboard/utils/shortcuts"

	"github.com/gofiber/fiber/v2"
)

func PreferencesPageController(ctx *fiber.Ctx) error {
	ctx.Locals("Title", "Site Preferences")
	return shortcuts.Render(ctx, "preferences", nil)
}