Sanitize credentials in mirror form (#9975)
This commit is contained in:
parent
5b17bb8f3d
commit
a67c06ce90
4 changed files with 37 additions and 1 deletions
|
@ -197,6 +197,14 @@ type Repository struct {
|
|||
UpdatedUnix timeutil.TimeStamp `xorm:"INDEX updated"`
|
||||
}
|
||||
|
||||
// SanitizedOriginalURL returns a sanitized OriginalURL
|
||||
func (repo *Repository) SanitizedOriginalURL() string {
|
||||
if repo.OriginalURL == "" {
|
||||
return ""
|
||||
}
|
||||
return util.SanitizeURLCredentials(repo.OriginalURL, false)
|
||||
}
|
||||
|
||||
// ColorFormat returns a colored string to represent this repo
|
||||
func (repo *Repository) ColorFormat(s fmt.State) {
|
||||
var ownerName interface{}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue