authentik/internal/constants/constants.go

21 lines
294 B
Go
Raw Normal View History

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())
}
2021-08-22 19:17:35 +01:00
const VERSION = "2021.8.1-rc1"