added optional task unique field

This commit is contained in:
simon987
2019-01-29 18:16:40 -05:00
parent f250a2180c
commit 64152bfc08
35 changed files with 877 additions and 156 deletions

View File

@@ -72,7 +72,8 @@ func (api *WebAPI) ReceiveGitWebHook(r *Request) {
version := getVersion(payload)
project.Version = version
api.Database.UpdateProject(project)
err := api.Database.UpdateProject(project)
handleErr(err, r)
}
func signatureValid(r *Request) (matches bool) {