Skip to content

Commit 7bb5e4f

Browse files
authored
Merge pull request #273 from mydevtools-tech/akhil/update-progress-modal
chore(backend): strip dead CRUD, keep auth-only surface
2 parents 01faa84 + 757192d commit 7bb5e4f

3 files changed

Lines changed: 8 additions & 107 deletions

File tree

apps/backend/app/main.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -250,10 +250,10 @@ def root() -> HTMLResponse:
250250
</header>
251251
252252
<main class="container hero">
253-
<h1>Minimal, production-ready API starter.</h1>
253+
<h1>Auth-only backend.</h1>
254254
<p>
255-
This service exposes health and auth helpers and includes task/project/bookmark modules
256-
designed to mirror the existing Firebase payload shape in your web app.
255+
This service exposes health and authentication helpers. All tool data lives
256+
on the user's device — the desktop app stores it locally, so there are no CRUD endpoints here.
257257
</p>
258258
259259
<div class="actions">
@@ -264,15 +264,15 @@ def root() -> HTMLResponse:
264264
<div class="grid">
265265
<div class="card">
266266
<h3>Auth</h3>
267-
<p>Verify Firebase ID tokens and fetch current user profile.</p>
267+
<p>Verify Firebase ID tokens and fetch the current user profile.</p>
268268
</div>
269269
<div class="card">
270-
<h3>Tasks</h3>
271-
<p>Paginated list, status updates, and export/import parity.</p>
270+
<h3>Passkeys</h3>
271+
<p>WebAuthn register/login and credential management.</p>
272272
</div>
273273
<div class="card">
274-
<h3>Bookmarks</h3>
275-
<p>Folders + bookmarks with upsert import and move/delete actions.</p>
274+
<h3>Health</h3>
275+
<p>Liveness probe at /api/v1/health.</p>
276276
</div>
277277
</div>
278278
</main>
Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,3 @@
11
USERS = "users"
2-
TASKS = "tasks"
3-
PROJECTS = "projects"
4-
BOOKMARKS = "bookmarks"
5-
BOOKMARK_FOLDERS = "bookmark_folders"
6-
PASSWORD_VAULTS = "password_Vaults"
7-
PASSWORD_ENTRIES = "password_entries"
8-
ENV_MANAGER_ENTRIES = "environment_manager_entries"
9-
API_KEY_VAULT_ENTRIES = "api_key_vault_entries"
10-
NOTES = "notes"
11-
NOSQL_CONNECTIONS = "mongodb_connections"
12-
USER_PREFERENCES = "user_preferences"
13-
NOSQL_QUERY_HISTORY = "nosql_query_history"
14-
API_CLIENT_COLLECTIONS = "api_client_collections"
15-
API_CLIENT_ENVIRONMENTS = "api_client_environments"
16-
API_CLIENT_HISTORY = "api_client_history"
17-
API_CLIENT_PUBLIC_MOCKS = "api_client_public_mocks"
18-
API_CLIENT_WORKSPACES = "api_client_workspaces"
19-
JSON_FORMATTER_DOCUMENTS = "json_formatter_documents"
20-
CODE_SNIPPETS = "code_snippets"
21-
SQL_CONNECTIONS = "sql_connections"
22-
S3_CONNECTIONS = "s3_connections"
23-
FEEDBACK = "feedback"
24-
REDIS_CONNECTIONS = "redis_connections"
252
AUDIT_LOG = "audit_log"
263
WEBAUTHN_CHALLENGES = "webauthn_challenges"
27-
WORKSPACES = "workspaces"
28-
WORKSPACE_MEMBERSHIPS = "workspace_memberships"

apps/backend/app/utils/crud.py

Lines changed: 0 additions & 74 deletions
This file was deleted.

0 commit comments

Comments
 (0)