Files
authentik/internal/constants/constants.go
Jens Langhammer c4f72c2bc1 release: 2021.8.2
2021-08-26 17:58:20 +02:00

21 lines
290 B
Go

package constants
import (
"fmt"
"os"
)
func BUILD() string {
build := os.Getenv("GIT_BUILD_HASH")
if build == "" {
return "tagged"
}
return build
}
func OutpostUserAgent() string {
return fmt.Sprintf("authentik-outpost@%s (%s)", VERSION, BUILD())
}
const VERSION = "2021.8.2"