mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
Started the big refactor to extract common logic from engine
package (Subsonic only) to core
package (more generic)
This commit is contained in:
parent
5418a6b6b1
commit
5620c58a30
25 changed files with 118 additions and 52 deletions
15
core/common.go
Normal file
15
core/common.go
Normal file
|
@ -0,0 +1,15 @@
|
|||
package core
|
||||
|
||||
import (
|
||||
"context"
|
||||
"github.com/deluan/navidrome/model/request"
|
||||
)
|
||||
|
||||
func userName(ctx context.Context) string {
|
||||
if user, ok := request.UserFrom(ctx); !ok {
|
||||
return "UNKNOWN"
|
||||
} else {
|
||||
return user.UserName
|
||||
}
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue