pawelgrimm/pomi

As a user, I can save my sessions to a database, so that I can access all sessions created on my account (regardless of device)

Opened this issue · 0 comments

Acceptance criteria:

  • A PostreSQL database is set up to save user sessions
    • Columns include: id, user_id, start_unix, end_unix, project, description, edited
    • Generated columns: duration, date, start_time, end_time
  • A DB service is created with add and update operations
  • UI actions (stop/edit) create sessions in the database

Sub-tasks:

  • #6 Learn about PostgreSQL
  • #7 Set up database
  • #8 Create Post/Patch/Get REST APIs for sessions
  • Wire up UI to database