[PR #75] [CLOSED] Copilot/add user management gateway #91

Closed
opened 2026-02-27 10:24:10 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mimamch/wa-gateway/pull/75
Author: @rt3norio
Created: 10/24/2025
Status: Closed

Base: masterHead: copilot/add-user-management-gateway


📝 Commits (10+)

  • 98c946c Initial plan
  • 37d7467 Initial exploration complete
  • d288aa6 Add user management system with SQLite and basic auth
  • 4347b8f Add user dashboard and complete documentation
  • 45dac58 Add implementation summary documentation
  • e13d427 feat: restructure admin panel code by moving HTML to a separate file and updating controller to read from it
  • 7b6e39d Implement 1:1 user-session model with per-user callback URLs
  • 3abe663 Add comprehensive changelog for 1:1 model implementation
  • 80fc814 refactor: update session connection check to verify user authentication
  • 551115b feat: enhance controllers to include user type in Hono app and implement in-memory message store for quoting functionality

📊 Changes

28 files changed (+6734 additions, -1114 deletions)

View changed files

.dockerignore (+61 -0)
.env.example (+26 -0)
📝 .gitignore (+2 -1)
CHANGELOG_1TO1_MODEL.md (+238 -0)
Dockerfile (+54 -0)
IMPLEMENTATION_SUMMARY.md (+228 -0)
📝 README.md (+87 -10)
USER_MANAGEMENT.md (+161 -0)
db/.gitkeep (+16 -0)
docker-compose.yml (+41 -0)
📝 package-lock.json (+3459 -1028)
📝 package.json (+4 -0)
📝 pnpm-lock.yaml (+265 -16)
pnpm-workspace.yaml (+6 -0)
src/controllers/admin.ts (+172 -0)
src/controllers/dashboard.ts (+180 -0)
📝 src/controllers/message.ts (+135 -14)
📝 src/controllers/profile.ts (+20 -2)
📝 src/controllers/session.ts (+148 -22)
src/database/db.ts (+121 -0)

...and 8 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/mimamch/wa-gateway/pull/75 **Author:** [@rt3norio](https://github.com/rt3norio) **Created:** 10/24/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `copilot/add-user-management-gateway` --- ### 📝 Commits (10+) - [`98c946c`](https://github.com/mimamch/wa-gateway/commit/98c946c8e80d3f7839914a1545ab9e99a0eafb0b) Initial plan - [`37d7467`](https://github.com/mimamch/wa-gateway/commit/37d74672483c80d466aaf29fc1fc5c2f0bf66ef3) Initial exploration complete - [`d288aa6`](https://github.com/mimamch/wa-gateway/commit/d288aa640ebb5eb72a1a39115df2d4822b3f9811) Add user management system with SQLite and basic auth - [`4347b8f`](https://github.com/mimamch/wa-gateway/commit/4347b8f414307af7982df7d67339e1e60f33bf53) Add user dashboard and complete documentation - [`45dac58`](https://github.com/mimamch/wa-gateway/commit/45dac585d3c9463c0dfb1f1c7ac548fbeb64f0cd) Add implementation summary documentation - [`e13d427`](https://github.com/mimamch/wa-gateway/commit/e13d42717142926ed6c91ec163992283c1117be9) feat: restructure admin panel code by moving HTML to a separate file and updating controller to read from it - [`7b6e39d`](https://github.com/mimamch/wa-gateway/commit/7b6e39d61e9598f5910b82e4eaf8788ca98ca03f) Implement 1:1 user-session model with per-user callback URLs - [`3abe663`](https://github.com/mimamch/wa-gateway/commit/3abe6633e5c1b2b2d4c65a2cde75663e7ffc3a9a) Add comprehensive changelog for 1:1 model implementation - [`80fc814`](https://github.com/mimamch/wa-gateway/commit/80fc8142181dbb438ee556185dea790ae691a550) refactor: update session connection check to verify user authentication - [`551115b`](https://github.com/mimamch/wa-gateway/commit/551115bf65c93666ec889f07164b8e21b18027c0) feat: enhance controllers to include user type in Hono app and implement in-memory message store for quoting functionality ### 📊 Changes **28 files changed** (+6734 additions, -1114 deletions) <details> <summary>View changed files</summary> ➕ `.dockerignore` (+61 -0) ➕ `.env.example` (+26 -0) 📝 `.gitignore` (+2 -1) ➕ `CHANGELOG_1TO1_MODEL.md` (+238 -0) ➕ `Dockerfile` (+54 -0) ➕ `IMPLEMENTATION_SUMMARY.md` (+228 -0) 📝 `README.md` (+87 -10) ➕ `USER_MANAGEMENT.md` (+161 -0) ➕ `db/.gitkeep` (+16 -0) ➕ `docker-compose.yml` (+41 -0) 📝 `package-lock.json` (+3459 -1028) 📝 `package.json` (+4 -0) 📝 `pnpm-lock.yaml` (+265 -16) ➕ `pnpm-workspace.yaml` (+6 -0) ➕ `src/controllers/admin.ts` (+172 -0) ➕ `src/controllers/dashboard.ts` (+180 -0) 📝 `src/controllers/message.ts` (+135 -14) 📝 `src/controllers/profile.ts` (+20 -2) 📝 `src/controllers/session.ts` (+148 -22) ➕ `src/database/db.ts` (+121 -0) _...and 8 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 10:24:10 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/wa-gateway-mimamch#91
No description provided.