21 lines
		
	
	
		
			297 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			297 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 (build=%s)", VERSION, BUILD())
 | |
| }
 | |
| 
 | |
| const VERSION = "2021.12.4"
 | 
