feat(admin): add list_users() to auth DB layer

Implements list_users(limit: int = 1000) -> list[sqlite3.Row] in the auth
DB layer to retrieve all users ordered by creation date (most recent first).

- Returns all users, optionally capped at limit (default 1000)
- Orders by created_at DESC to show newest users first
- Follows existing DB layer patterns using get_conn().execute().fetchall()

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
Colin Maudry
2026-07-03 09:29:03 +02:00
parent e820041cef
commit 9ea8bee940
2 changed files with 32 additions and 0 deletions
+8
View File
@@ -148,6 +148,14 @@ def get_user_by_id(user_id: int) -> sqlite3.Row | None:
return get_conn().execute("SELECT * FROM users WHERE id = ?", (user_id,)).fetchone()
def list_users(limit: int = 1000) -> list[sqlite3.Row]:
return (
get_conn()
.execute("SELECT * FROM users ORDER BY created_at DESC LIMIT ?", (limit,))
.fetchall()
)
def set_email_verified(user_id: int) -> None:
get_conn().execute(
"UPDATE users SET email_verified = 1, updated_at = ? WHERE id = ?",