mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Initial support for playlists. Missing permissions
This commit is contained in:
parent
3a44f37622
commit
57fcdac428
6 changed files with 117 additions and 36 deletions
|
@ -13,3 +13,12 @@ func MaxInt(x, y int) int {
|
|||
}
|
||||
return y
|
||||
}
|
||||
|
||||
func IntInSlice(a int, list []int) bool {
|
||||
for _, b := range list {
|
||||
if b == a {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
|
@ -32,3 +32,12 @@ func LongestCommonPrefix(list []string) string {
|
|||
}
|
||||
return list[0]
|
||||
}
|
||||
|
||||
func StringInSlice(a string, list []string) bool {
|
||||
for _, b := range list {
|
||||
if b == a {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue