0

Use thumbnail and preview gif controllers

This commit is contained in:
Gabe Kangas 2022-06-20 22:18:27 -07:00
parent 9c477e16a2
commit 718d6d312b
No known key found for this signature in database
GPG Key ID: 9A56337728BC81EA

View File

@ -31,11 +31,15 @@ func Start() error {
// The admin web app.
http.HandleFunc("/admin", middleware.RequireAdminAuth(controllers.IndexHandler))
// Images
http.HandleFunc("/thumbnail.jpg", controllers.GetThumbnail)
http.HandleFunc("/preview.gif", controllers.GetPreview)
http.HandleFunc("/logo", controllers.GetLogo)
// Return a single emoji image.
http.HandleFunc("/img/emoji/", middleware.RequireAdminAuth(controllers.GetCustomEmojiImage))
// return the logo
http.HandleFunc("/logo", controllers.GetLogo)
// return a logo that's compatible with external social networks
http.HandleFunc("/logo/external", controllers.GetCompatibleLogo)