mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
feat: expose album, song and artist annotations in the RESTful API
This commit is contained in:
parent
0e36ed35a3
commit
777231ea79
7 changed files with 47 additions and 16 deletions
|
@ -16,3 +16,12 @@ func NoArticle(name string) string {
|
|||
}
|
||||
return name
|
||||
}
|
||||
|
||||
func StringInSlice(a string, list []string) bool {
|
||||
for _, b := range list {
|
||||
if b == a {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
|
|
@ -34,4 +34,18 @@ var _ = Describe("Strings", func() {
|
|||
})
|
||||
})
|
||||
})
|
||||
|
||||
Describe("StringInSlice", func() {
|
||||
It("returns false if slice is empty", func() {
|
||||
Expect(StringInSlice("test", nil)).To(BeFalse())
|
||||
})
|
||||
|
||||
It("returns false if string is not found in slice", func() {
|
||||
Expect(StringInSlice("aaa", []string{"bbb", "ccc"})).To(BeFalse())
|
||||
})
|
||||
|
||||
It("returns true if string is found in slice", func() {
|
||||
Expect(StringInSlice("bbb", []string{"bbb", "aaa", "ccc"})).To(BeTrue())
|
||||
})
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue