()
| 104 | } |
| 105 | |
| 106 | export const orgNotFound = (): ServiceError => { |
| 107 | return { |
| 108 | statusCode: StatusCodes.NOT_FOUND, |
| 109 | errorCode: ErrorCode.ORG_NOT_FOUND, |
| 110 | message: "Organization not found", |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | export const invalidGitRef = (ref: string): ServiceError => { |
| 115 | return { |
no outgoing calls
no test coverage detected