15 lines
325 B
Go
15 lines
325 B
Go
package server
|
|
|
|
import (
|
|
"github.com/gofiber/fiber/v2"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
func getMetadata(c *fiber.Ctx) error {
|
|
return c.JSON(fiber.Map{
|
|
"name": viper.GetString("name"),
|
|
"domain": viper.GetString("domain"),
|
|
"open_registration": !viper.GetBool("use_registration_magic_token"),
|
|
})
|
|
}
|