/
githubmirror
/
photoprism
Обзор
Документация
Войти
/
githubmirror
/
photoprism
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
pkg/clean/scope.go
27 строк
639 B
Michael Mayer
Auth: Shorten code comments in pkg/clean/scope.go #98 #5230
26 сен 2025, 06:55
26 сен 2025, 06:55
66e2027
Код
Авторство
О чём код?
package clean import ( "strings" "github.com/photoprism/photoprism/pkg/list" ) // Scope sanitizes a string that contains auth scope identifiers. // Callers should use acl.ScopeAttrPermits / acl.ScopePermits for authorization checks. func Scope(s string) string { if s == "" { return "" } return list.ParseAttr(strings.ToLower(s)).String() } // Scopes sanitizes auth scope identifiers and returns them as strings. // Callers should use acl.ScopeAttrPermits / acl.ScopePermits for authorization checks. func Scopes(s string) []string { if s == "" { return []string{} } return list.ParseAttr(strings.ToLower(s)).Strings() }