mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 13:37:38 +03:00
setRating.view implemented
This commit is contained in:
parent
d59394c653
commit
fc8bb34ae3
4 changed files with 59 additions and 0 deletions
|
@ -60,6 +60,14 @@ func (c *BaseAPIController) ParamTimes(param string) []time.Time {
|
|||
return times
|
||||
}
|
||||
|
||||
func (c *BaseAPIController) RequiredParamInt(param string, msg string) int {
|
||||
p := c.Input().Get(param)
|
||||
if p == "" {
|
||||
c.SendError(responses.ErrorMissingParameter, msg)
|
||||
}
|
||||
return c.ParamInt(param, 0)
|
||||
}
|
||||
|
||||
func (c *BaseAPIController) ParamInt(param string, def int) int {
|
||||
value := def
|
||||
c.Ctx.Input.Bind(&value, param)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue