Commit Graph

14 Commits

Author SHA1 Message Date
2b4ab30071 chore: remove trailing whitespace and normalize line endings across all source files 2025-03-28 05:56:36 +00:00
67e2ebe853 feat: add user_id index to profiles table for faster lookups
The profiles table previously lacked an index on the user_id column, causing full table scans during user lookups. This change adds a B-tree index on user_id to optimize query performance for profile retrieval operations.
2025-03-21 00:15:40 +00:00
2f5ada0ce7 chore: remove trailing whitespace from README.md line 42 2025-03-19 21:02:39 +00:00
5eee67661a chore: remove trailing whitespace from README.md line 42 2025-03-19 20:45:07 +00:00
eacb393b89 fix: correct null pointer dereference in user profile avatar loader 2025-03-16 22:35:35 +00:00
c90fc42afc chore: remove trailing whitespace from README.md formatting 2025-03-16 21:46:09 +00:00
72994aa10f chore: remove outdated placeholder content from project root readme 2025-03-16 06:36:13 +00:00
4dd41be6c1 chore: replace placeholder branding with final logo and color scheme 2025-03-03 16:06:05 +00:00
ad7ebf2e2b refactor: extract user authentication logic into dedicated service class with dependency injection 2025-01-27 18:06:59 +00:00
9c92ef06da chore: remove trailing whitespace from README.md line 42 2025-01-27 17:57:21 +00:00
127ea61ae7 chore: remove trailing whitespace from README.md formatting 2025-01-26 01:54:45 +00:00
29239df816 feat: add user_id index to profiles table for faster lookup queries
The new index on the `user_id` column in the `profiles` table improves query performance for user-specific lookups, reducing full table scans during authentication and profile retrieval operations.
2025-01-05 21:59:51 +00:00
6232611e0b feat: add JWT-based authentication with 24h token expiry in login handler 2025-01-04 16:04:14 +00:00
4be6b8f308 feat: implement user authentication with JWT token generation and validation 2025-01-04 15:54:48 +00:00