-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Whitelist - gather coordinates for one to many routing #155
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bugfix + tests
src/lib/bookingApiParameters.ts
Outdated
@@ -2,7 +2,7 @@ import type { BusStop } from './busStop'; | |||
import type { Capacities } from './capacities'; | |||
import type { Coordinates } from './location'; | |||
|
|||
export type BookingRequestParameters = { | |||
export type CheckBookingValidityParameters = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
export type CheckBookingValidityParameters = { | |
export type WhiteListRequest = { |
Man kann dann BlackListRequest
als Alias von Whitelist Request definieren.
Terminologie für Anfragen = ...Request
Terminologie für Antworten = ...Response
(ggf. hier wieder Typalias BlacklistResponse
= WhitelistResponse
falls zutreffend
src/routes/api/whitelist/utils.ts
Outdated
busStopCompanyFilter: boolean[][], | ||
insertions: Map<number, Range[]>, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
was ist die Semantik von boolean[][]
und number
und Range
?
No description provided.