Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for guessIsLoginSTSReq (0.05 sec)

  1. cmd/generic-handlers_contrib.go

     * limitations under the License.
     */
    
    package cmd
    
    import (
    	"net/http"
    	"strings"
    )
    
    // guessIsLoginSTSReq - returns true if incoming request is Login STS user
    func guessIsLoginSTSReq(req *http.Request) bool {
    	if req == nil {
    		return false
    	}
    	return strings.HasPrefix(req.URL.Path, loginPathPrefix) ||
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Apr 30 15:50:39 UTC 2021
    - 995 bytes
    - Viewed (0)
Back to top