Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tequilapi/tequil/routes.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import "strings"
const TequilapiURLPrefix = "/tequilapi"

// UnprotectedRoutes these routes are not protected by reverse proxy
var UnprotectedRoutes = []string{"/auth/authenticate", "/auth/login", "/healthcheck", "/config/user", "/config/ui/features"}
var UnprotectedRoutes = []string{"/auth/authenticate", "/auth/login", "/healthcheck", "/config/ui/features"}

// IsUnprotectedRoute helper method for checking if route is unprotected
func IsUnprotectedRoute(url string) bool {
Expand Down
Loading