revert accidental search&replace fail

This commit is contained in:
simon987
2019-02-16 09:56:44 -05:00
parent 6ca92bc0a7
commit 03153c4d39
20 changed files with 108 additions and 96 deletions

View File

@@ -146,7 +146,7 @@ func (api *WebAPI) WorkerGrantAccess(r *Request) {
} else {
r.OkJson(WorkerAccessResponse{
Ok: false,
Message: "Worker already has access to this projectChange",
Message: "Worker already has access to this project",
})
}
}
@@ -171,7 +171,7 @@ func (api *WebAPI) WorkerRemoveAccess(r *Request) {
} else {
r.OkJson(WorkerAccessResponse{
Ok: false,
Message: "Worker did not have access to this projectChange",
Message: "Worker did not have access to this project",
})
}
}