mirror of
https://github.com/go-gitea/gitea.git
synced 2026-04-04 18:56:28 +02:00
14 lines
238 B
Go
14 lines
238 B
Go
// Copyright 2025 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package integration
|
|
|
|
import "fmt"
|
|
|
|
func maybeGroupSegment(gid int64) string {
|
|
if gid > 0 {
|
|
return fmt.Sprintf("group/%d/", gid)
|
|
}
|
|
return ""
|
|
}
|