Skip to content

Commit

Permalink
set calc_distance and calc_duration minimum to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Fallon committed Nov 10, 2021
1 parent 4c40c45 commit 4639d92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shared/carpool/crosscheck.schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ export const schema = {
},
},
},
calc_distance: { type: 'integer', minimum: 1, maximum: 2147483647 },
calc_duration: { type: 'integer', minimum: 1, maximum: 2147483647 },
calc_distance: { type: 'integer', minimum: 0, maximum: 2147483647 },
calc_duration: { type: 'integer', minimum: 0, maximum: 2147483647 },
},
},
},
Expand Down

0 comments on commit 4639d92

Please sign in to comment.