setRating.view implemented

This commit is contained in:
Deluan 2016-03-23 19:37:48 -04:00
parent d59394c653
commit fc8bb34ae3
4 changed files with 59 additions and 0 deletions

View file

@ -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)