This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2021-05-04 12:28:48 +00:00
|
|
|
package constants
|
|
|
|
|
2021-06-16 10:35:17 +00:00
|
|
|
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-07-02 14:23:30 +00:00
|
|
|
|
2021-08-22 18:17:35 +00:00
|
|
|
const VERSION = "2021.8.1-rc1"
|