(r *http.Request)
| 53 | } |
| 54 | |
| 55 | func GetPullReqCommentIDPath(r *http.Request) (int64, error) { |
| 56 | return PathParamAsPositiveInt64(r, PathParamPullReqCommentID) |
| 57 | } |
| 58 | |
| 59 | func GetPullReqSourceBranchFromPath(r *http.Request) (string, error) { |
| 60 | return PathParamOrError(r, PathParamSourceBranch) |
no test coverage detected
searching dependent graphs…