2023-02-08 16:25:06 +01:00
|
|
|
# Edge case
|
|
|
|
- Trip in the morning on usi rowing day
|
2023-02-08 22:02:17 +01:00
|
|
|
- after N people (/ cox) -> red highlighted -> queue
|
2023-02-08 16:25:06 +01:00
|
|
|
|
|
|
|
# Fancy
|
|
|
|
- Every cox can define which boats they use
|
|
|
|
- Link for specific trip
|
|
|
|
- Basic auth (with e.g. ekrv) to prevent spam bots? (Or on first login there are 2 input fields: name + e.g. name of "strom")
|
2023-03-14 14:00:53 +01:00
|
|
|
|
|
|
|
|
|
|
|
# DB
|
|
|
|
|
|
|
|
- users
|
|
|
|
- id: i32
|
|
|
|
- name: String
|
|
|
|
- pw: Option<String>
|
|
|
|
- is_cox: bool
|
|
|
|
- is_admin: bool
|
|
|
|
- day
|
|
|
|
- day: chrono::NaiveDate
|
|
|
|
- planned_amount_cox: i32
|
|
|
|
- planned_starting_time: Option<String>
|
|
|
|
- open_registration: bool
|
|
|
|
- trip
|
|
|
|
- day: String
|
|
|
|
- user_id: i32
|
|
|
|
- cox_id: Option<i32>
|
|
|
|
- begin: Option<String>
|
|
|
|
- created: chrono::DateTime
|