[PR #90] [MERGED] Feat/dashboard #98

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

📋 Pull Request Information

Original PR: https://github.com/mimamch/wa-gateway/pull/90
Author: @mimamch
Created: 1/19/2026
Status: Merged
Merged: 1/19/2026
Merged by: @mimamch

Base: masterHead: feat/dashboard


📝 Commits (8)

  • 92492b2 feat(dashboard): authentication and main dashboard feature
  • d637170 feat(auth): switch to signed cookies for authentication key management
  • 5875ea9 feat(dashboard): enhance layout and styling for dashboard components
  • b1b63e8 feat(auth): implement login attempt limit with debounce mechanism
  • 520c6af feat: enhance dashboard session management with QR code functionality
  • 0f0fd34 feat(dashboard): add user details display in session management
  • 2d88664 feat(dashboard): implement message sending functionality and enhance session display
  • 69c1a35 feat: update version to 4.6.0 in package.json

📊 Changes

20 files changed (+2775 additions, -73 deletions)

View changed files

assets/js/create-session.js (+36 -0)
assets/js/qrcode.min.js (+1 -0)
assets/js/script.js (+32 -0)
assets/style.css (+682 -0)
📝 package.json (+9 -3)
📝 pnpm-lock.yaml (+1358 -24)
pnpm-workspace.yaml (+9 -0)
src/controllers/dashboard/auth.tsx (+64 -0)
src/controllers/dashboard/dashboard.tsx (+165 -0)
📝 src/controllers/session.ts (+7 -2)
src/globals.css (+1 -0)
📝 src/index.ts (+55 -43)
📝 src/middlewares/key.middleware.ts (+14 -0)
src/views/auth/index.tsx (+48 -0)
src/views/dashboard/index.tsx (+55 -0)
src/views/dashboard/session-create.tsx (+44 -0)
src/views/dashboard/sessions.tsx (+135 -0)
src/views/layout/index.tsx (+26 -0)
📝 src/webhooks/message.ts (+1 -0)
📝 src/whatsapp.ts (+33 -1)

📄 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/90 **Author:** [@mimamch](https://github.com/mimamch) **Created:** 1/19/2026 **Status:** ✅ Merged **Merged:** 1/19/2026 **Merged by:** [@mimamch](https://github.com/mimamch) **Base:** `master` ← **Head:** `feat/dashboard` --- ### 📝 Commits (8) - [`92492b2`](https://github.com/mimamch/wa-gateway/commit/92492b2b5ef0f9faa89102239fd290be458d4e8d) feat(dashboard): authentication and main dashboard feature - [`d637170`](https://github.com/mimamch/wa-gateway/commit/d63717069b69f39f778e4cd3896b9644316decbd) feat(auth): switch to signed cookies for authentication key management - [`5875ea9`](https://github.com/mimamch/wa-gateway/commit/5875ea9afdc486cf6a2019ffa7d49700828b9ade) feat(dashboard): enhance layout and styling for dashboard components - [`b1b63e8`](https://github.com/mimamch/wa-gateway/commit/b1b63e8f7451900c4b5e7206957333eefe22966d) feat(auth): implement login attempt limit with debounce mechanism - [`520c6af`](https://github.com/mimamch/wa-gateway/commit/520c6afcf6a70bcc26d40ee935c1ee85563a9005) feat: enhance dashboard session management with QR code functionality - [`0f0fd34`](https://github.com/mimamch/wa-gateway/commit/0f0fd34c9638c0ec4df2b608ca782f40dee61b19) feat(dashboard): add user details display in session management - [`2d88664`](https://github.com/mimamch/wa-gateway/commit/2d886643d218af3a553aa2ec1713f208130a1974) feat(dashboard): implement message sending functionality and enhance session display - [`69c1a35`](https://github.com/mimamch/wa-gateway/commit/69c1a350ebea3c7cfa9b6256e0bda385123f19e0) feat: update version to 4.6.0 in package.json ### 📊 Changes **20 files changed** (+2775 additions, -73 deletions) <details> <summary>View changed files</summary> ➕ `assets/js/create-session.js` (+36 -0) ➕ `assets/js/qrcode.min.js` (+1 -0) ➕ `assets/js/script.js` (+32 -0) ➕ `assets/style.css` (+682 -0) 📝 `package.json` (+9 -3) 📝 `pnpm-lock.yaml` (+1358 -24) ➕ `pnpm-workspace.yaml` (+9 -0) ➕ `src/controllers/dashboard/auth.tsx` (+64 -0) ➕ `src/controllers/dashboard/dashboard.tsx` (+165 -0) 📝 `src/controllers/session.ts` (+7 -2) ➕ `src/globals.css` (+1 -0) 📝 `src/index.ts` (+55 -43) 📝 `src/middlewares/key.middleware.ts` (+14 -0) ➕ `src/views/auth/index.tsx` (+48 -0) ➕ `src/views/dashboard/index.tsx` (+55 -0) ➕ `src/views/dashboard/session-create.tsx` (+44 -0) ➕ `src/views/dashboard/sessions.tsx` (+135 -0) ➕ `src/views/layout/index.tsx` (+26 -0) 📝 `src/webhooks/message.ts` (+1 -0) 📝 `src/whatsapp.ts` (+33 -1) </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 closed this issue 2026-02-27 10:24:12 +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#98
No description provided.