Ruderassistent des Rudervereins Donau Linz https://app.rudernlinz.at
Go to file
2023-04-03 17:32:41 +02:00
src clean code with clippy 2023-04-03 17:32:41 +02:00
templates start working on auth 2023-04-03 16:11:26 +02:00
.env initial push 2023-02-08 16:25:06 +01:00
.gitignore [TASK] add .history to gitignore 2023-03-04 11:40:43 +01:00
Cargo.lock clean code with clippy 2023-04-03 17:32:41 +02:00
Cargo.toml clean code with clippy 2023-04-03 17:32:41 +02:00
migration.sql start working on auth 2023-04-03 16:11:26 +02:00
README.md add todos 2023-03-26 17:28:25 +02:00
rot.service add service + update file 2023-03-04 11:52:11 +01:00
seeds.sql craete login tests 2023-04-03 17:21:34 +02:00
test_db.sh add user table 2023-03-26 14:40:56 +02:00
update.sh add service + update file 2023-03-04 11:52:11 +01:00

Process

  • Import rowing members -> "Firstname Lastname"
  • New name -> is_guest = True
  • New trip from cox: define amount of rowers
  • guests only see guest trips

Edge case

  • Trip in the morning on usi rowing day
  • after N people (/ cox) -> red highlighted -> queue

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")

DB

  • users
    • id: i32
    • name: String
    • pw: Option
    • is_cox: bool (false)
    • is_admin: bool (false)
    • is_guest: bool (true)
  • planned_event
    • id: i32
    • name: String (e.g. "USI")
    • planned_amount_cox: i32
    • trip_details_id: i32 (trip_details.id)
    • open_registration: bool
    • allow_guests: bool (false)
  • trip
    • id: i32
    • cox_id: i32 (user.id)
    • trip_details: Option (trip_details.id)
    • planned_trip_id: Option (planned_trip.id)
    • created: chrono::DateTime
  • trip_details
    • id: i32
    • planned_starting_time: String
    • max_people: i32
    • day: chrono::NaiveDate
    • notes: String
  • user_trip
    • trip_details_id: i32 (trip_details.id)
    • user_id: i32 (user.id)
    • created: chrono::DateTime

TODO

  • User login
  • Admin
    • User
      • User passwort zurücksetzen
      • Cox + admin setzen
  • Ausfahrten
    • CRUD planned_event
    • CRUD trip_details
    • CRUD trip
    • CRUD user_trip