Samuele Lorefice REDCODE
  • Joined on 2024-01-01
REDCODE pushed to fix/mobile-ui-responsive-fixes at MilkyShots/MilkyShots 2026-07-08 23:52:52 +00:00
04d425b88d refactor: replace custom masonry JS with Bootstrap grid + Masonry.js approach
REDCODE pushed to fix/mobile-ui-responsive-fixes at MilkyShots/MilkyShots 2026-07-08 22:58:17 +00:00
ca21dc3dd9 fix(frontend): removed faulty d-flex tag on main object
REDCODE pushed to fix/mobile-ui-responsive-fixes at MilkyShots/MilkyShots 2026-07-08 21:34:03 +00:00
f4d4b6a75a Merge branch 'develop' into fix/mobile-ui-responsive-fixes
4ff3b24df8 Merge remote-tracking branch 'gitea/develop' into develop
1da7236d5d fix(frontend): sorts setting by alphabetical
df14b8b227 fix (lactose): remove check from authentication endpoint
15508013a3 Merge remote-tracking branch 'origin/develop' into develop
Compare 6 commits »
REDCODE pushed to develop at MilkyShots/MilkyShots 2026-07-08 21:33:31 +00:00
4ff3b24df8 Merge remote-tracking branch 'gitea/develop' into develop
1da7236d5d fix(frontend): sorts setting by alphabetical
Compare 2 commits »
REDCODE pushed to fix/mobile-ui-responsive-fixes at MilkyShots/MilkyShots 2026-07-08 17:51:50 +00:00
76cabe058b fix(ui): collapse AdminUsers table columns and actions on mobile (#48)
REDCODE created pull request MilkyShots/MilkyShots#49 2026-07-08 17:49:34 +00:00
fix(ui): responsive layout fixes for mobile portrait mode
REDCODE created branch fix/mobile-ui-responsive-fixes in MilkyShots/MilkyShots 2026-07-08 17:49:15 +00:00
REDCODE pushed to fix/mobile-ui-responsive-fixes at MilkyShots/MilkyShots 2026-07-08 17:49:15 +00:00
33175ffdcb fix(ui): responsive layout fixes for mobile portrait mode (closes #48)
REDCODE pushed to develop at MilkyShots/MilkyShots 2026-07-08 17:45:32 +00:00
54cf5eff2b feat(stats): add percentage and stale counters to completeness cards
REDCODE opened issue MilkyShots/MilkyShots#48 2026-07-08 17:38:46 +00:00
Mobile UI: 13 portrait-mode layout & overflow problems on small screens
REDCODE commented on issue MilkyShots/MilkyShots#45 2026-07-08 17:19:28 +00:00
Add user management page for admins

Final summary — all commits on feature/admin-users-page merged into develop via 94bba45

New page: AdminUsers.razor (/Users)

  • Full user table: Username, Email, Role, Status,…
REDCODE pushed to develop at MilkyShots/MilkyShots 2026-07-08 17:18:37 +00:00
94bba45f45 Merge branch 'feature/admin-users-page' into develop
23ef7e3ded fix(auth): detect banned/deleted user on page load via InitializeAsync
a84d93882d fix(auth): show ban/disabled message on login and force-logout on refresh
0ec6888809 fix(admin): show inline errors instead of replacing entire page
977d2325fa feat(admin): add inline editing for username, email, and password
Compare 9 commits »
REDCODE closed issue MilkyShots/MilkyShots#45 2026-07-08 17:18:35 +00:00
Add user management page for admins
REDCODE pushed to feature/admin-users-page at MilkyShots/MilkyShots 2026-07-08 17:15:53 +00:00
23ef7e3ded fix(auth): detect banned/deleted user on page load via InitializeAsync
REDCODE commented on issue MilkyShots/MilkyShots#45 2026-07-08 17:15:51 +00:00
Add user management page for admins

Added banned/deleted user detection on page load in 4f9f9a4:

InitializeAsync() now checks LoggedUser.IsBanned and LoggedUser.DeletedAt after fetching the user profile. If banned or…

REDCODE pushed to feature/admin-users-page at MilkyShots/MilkyShots 2026-07-08 17:11:01 +00:00
a84d93882d fix(auth): show ban/disabled message on login and force-logout on refresh
REDCODE commented on issue MilkyShots/MilkyShots#45 2026-07-08 17:11:00 +00:00
Add user management page for admins

Fixed banned/discovered user experience in c310b8f:

Server-side:

  • AuthController.Login and RefreshToken: Changed StatusCodes.Status100Continue (HTTP 100) → `StatusCodes.Status403Forb…
REDCODE pushed to feature/admin-users-page at MilkyShots/MilkyShots 2026-07-08 17:00:12 +00:00
0ec6888809 fix(admin): show inline errors instead of replacing entire page
REDCODE commented on issue MilkyShots/MilkyShots#45 2026-07-08 17:00:09 +00:00
Add user management page for admins

Fixed: error messages (like "Email cannot be empty") no longer hide the entire page. They now appear as dismissible alerts above the users table instead of replacing the whole content area.

REDCODE commented on issue MilkyShots/MilkyShots#45 2026-07-08 16:56:55 +00:00
Add user management page for admins

Added inline editing for username, email, and password in 6b7b36e:

  • Username: click pencil → input with confirm/cancel. Validates non-empty.
  • Email: click pencil → input with…