mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-04 12:56:02 +02:00
Remove the deprecated set_authorization_header option entirely. Add an entry to the removedConfigFields map with a link to the relevant Upgrading page section.
18 lines
458 B
Go
18 lines
458 B
Go
// Package config contains protobuf definitions for config.
|
|
package config
|
|
|
|
// IsSet returns true if one of the route redirect options has been chosen.
|
|
func (rr *RouteRedirect) IsSet() bool {
|
|
if rr == nil {
|
|
return false
|
|
}
|
|
|
|
return rr.StripQuery != nil ||
|
|
rr.ResponseCode != nil ||
|
|
rr.PrefixRewrite != nil ||
|
|
rr.PathRedirect != nil ||
|
|
rr.PortRedirect != nil ||
|
|
rr.HostRedirect != nil ||
|
|
rr.SchemeRedirect != nil ||
|
|
rr.HttpsRedirect != nil
|
|
}
|