add mail attribute to user,

bump API version to 1.0.3
This commit is contained in:
2025-02-11 07:09:48 +00:00
parent fa9abe19fc
commit ef51f6d31d
3 changed files with 18 additions and 6 deletions

View File

@@ -15,16 +15,18 @@ import (
)
var LDAPSessions map[string]*LDAPClient
var APIVersion = "1.0.2"
var APIVersion = "1.0.3"
func Run() {
gob.Register(LDAPClient{})
log.Printf("Starting ProxmoxAAS-LDAP version %s\n", APIVersion)
configPath := flag.String("config", "config.json", "path to config.json file")
flag.Parse()
config := GetConfig(*configPath)
log.Println("Initialized config from " + *configPath)
log.Printf("Read in config from %s\n", *configPath)
gin.SetMode(gin.ReleaseMode)
router := gin.Default()
@@ -37,6 +39,8 @@ func Run() {
})
router.Use(sessions.Sessions(config.SessionCookieName, store))
log.Printf("Started API router and cookie store (Name: %s Params: %+v)\n", config.SessionCookieName, config.SessionCookie)
LDAPSessions = make(map[string]*LDAPClient)
router.GET("/version", func(c *gin.Context) {
@@ -300,5 +304,7 @@ func Run() {
c.JSON(status, res)
})
log.Printf("Starting LDAP API on port %s\n", strconv.Itoa(config.ListenPort))
router.Run("0.0.0.0:" + strconv.Itoa(config.ListenPort))
}