2017-12-16 02:41:02 +05:30
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2017-12-16 02:41:02 +05:30
|
|
|
|
|
|
|
package test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
|
|
|
// RedirectURL returns the redirect URL of a http response.
|
|
|
|
func RedirectURL(resp http.ResponseWriter) string {
|
|
|
|
return resp.Header().Get("Location")
|
|
|
|
}
|