This commit is contained in:
kolaente 2018-07-26 10:10:39 +02:00
parent 7b07137b67
commit a9094506fa
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 0 additions and 31 deletions

View File

@ -1,31 +0,0 @@
package models
import (
"github.com/labstack/echo"
"strconv"
)
// GetIntURLParam is a helper method which returns an int from an url param
func GetIntURLParam(param string, c echo.Context) (intParam int64, err error) {
id := c.Param(param)
if id != "" {
intParam, err = strconv.ParseInt(id, 10, 64)
}
return intParam, err
}
// GetByID gets an object by its ID
func GetByID(id int64, result interface{}) (err error) {
exists, err := x.ID(id).Get(result)
if err != nil {
return err
}
if !exists {
return ErrListDoesNotExist{}
}
return
}