[PR #73] [MERGED] Notifications system implementation #128

Closed
opened 2026-02-15 16:30:23 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/vector-admin/pull/73
Author: @timothycarambat
Created: 10/16/2023
Status: Merged
Merged: 10/16/2023
Merged by: @timothycarambat

Base: masterHead: notifications-system


📝 Commits (4)

  • 2499f45 Frontend notification setup
  • a5dc650 Implement notification system
  • aaa41a7 Show empty notifications when none present
  • ba2337c change null condition of notification

📊 Changes

9 files changed (+652 additions, -32 deletions)

View changed files

📝 backend/endpoints/v1/organizations/index.js (+84 -0)
backend/models/notification.js (+109 -0)
backend/prisma/migrations/20231016215213_init/migration.sql (+17 -0)
📝 backend/prisma/schema.prisma (+27 -13)
📝 backend/storage/settings.json (+164 -0)
frontend/src/components/Header/Notifications/index.tsx (+195 -0)
📝 frontend/src/components/Header/index.tsx (+21 -19)
📝 frontend/src/models/organization.ts (+27 -0)
frontend/src/utils/data.ts (+8 -0)

📄 Description

Will be used for pushing notifications for job completion and other alert tasks


🔄 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/Mintplex-Labs/vector-admin/pull/73 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 10/16/2023 **Status:** ✅ Merged **Merged:** 10/16/2023 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `notifications-system` --- ### 📝 Commits (4) - [`2499f45`](https://github.com/Mintplex-Labs/vector-admin/commit/2499f456c164e8707e840395f7bdd92702c08be5) Frontend notification setup - [`a5dc650`](https://github.com/Mintplex-Labs/vector-admin/commit/a5dc650afcae02fffde49bf0f66360b42465f89a) Implement notification system - [`aaa41a7`](https://github.com/Mintplex-Labs/vector-admin/commit/aaa41a79fac0233173800033dea8ca552bbe3342) Show empty notifications when none present - [`ba2337c`](https://github.com/Mintplex-Labs/vector-admin/commit/ba2337c317a3ad9b6b67f63e795afa27050cc492) change null condition of notification ### 📊 Changes **9 files changed** (+652 additions, -32 deletions) <details> <summary>View changed files</summary> 📝 `backend/endpoints/v1/organizations/index.js` (+84 -0) ➕ `backend/models/notification.js` (+109 -0) ➕ `backend/prisma/migrations/20231016215213_init/migration.sql` (+17 -0) 📝 `backend/prisma/schema.prisma` (+27 -13) 📝 `backend/storage/settings.json` (+164 -0) ➕ `frontend/src/components/Header/Notifications/index.tsx` (+195 -0) 📝 `frontend/src/components/Header/index.tsx` (+21 -19) 📝 `frontend/src/models/organization.ts` (+27 -0) ➕ `frontend/src/utils/data.ts` (+8 -0) </details> ### 📄 Description Will be used for pushing notifications for job completion and other alert tasks --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-15 16:30:23 -05:00
yindo closed this issue 2026-02-15 16:30:23 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/vector-admin#128