Removed unused function
This commit is contained in:
parent
278d0ea8f3
commit
bc2073fbd5
1 changed files with 0 additions and 10 deletions
|
|
@ -1,13 +1,11 @@
|
||||||
package engine
|
package engine
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/deluan/navidrome/consts"
|
"github.com/deluan/navidrome/consts"
|
||||||
"github.com/deluan/navidrome/model"
|
"github.com/deluan/navidrome/model"
|
||||||
"github.com/deluan/navidrome/model/request"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type Entry struct {
|
type Entry struct {
|
||||||
|
|
@ -160,11 +158,3 @@ func FromArtists(ars model.Artists) Entries {
|
||||||
}
|
}
|
||||||
return entries
|
return entries
|
||||||
}
|
}
|
||||||
|
|
||||||
func userName(ctx context.Context) string {
|
|
||||||
if user, ok := request.UserFrom(ctx); !ok {
|
|
||||||
return "UNKNOWN"
|
|
||||||
} else {
|
|
||||||
return user.UserName
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue