repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
Projectflow
stars
latest
clone command
git clone gitlawb://did:key:z6Mkfh4Y...QBEi/projectflowgit clone gitlawb://did:key:z6Mkfh4Y.../projectflowb3cded1async from playground1d ago| #1 | import type { Notification } from "../../domain/entities"; |
| #2 | |
| #3 | export const notifications: Notification[] = [ |
| #4 | { |
| #5 | id: "n1", |
| #6 | userId: "u1", |
| #7 | type: "assignment", |
| #8 | title: "New assignment", |
| #9 | message: "Sarah Kim assigned you to WEB-4 - Kanban board with drag-and-drop", |
| #10 | read: false, |
| #11 | issueId: "i4", |
| #12 | createdAt: "2025-03-15T10:00:00Z", |
| #13 | }, |
| #14 | { |
| #15 | id: "n2", |
| #16 | userId: "u1", |
| #17 | type: "mention", |
| #18 | title: "Mentioned in comment", |
| #19 | message: 'Marcus Johnson mentioned you in a comment on WEB-6: "...need @alex to review the API design"', |
| #20 | read: false, |
| #21 | issueId: "i6", |
| #22 | createdAt: "2025-03-18T14:00:00Z", |
| #23 | }, |
| #24 | { |
| #25 | id: "n3", |
| #26 | userId: "u1", |
| #27 | type: "sprint_started", |
| #28 | title: "Sprint started", |
| #29 | message: 'Sprint 2 - Core Features has started with 8 issues', |
| #30 | read: true, |
| #31 | createdAt: "2025-03-15T09:00:00Z", |
| #32 | }, |
| #33 | { |
| #34 | id: "n4", |
| #35 | userId: "u1", |
| #36 | type: "issue_updated", |
| #37 | title: "Issue updated", |
| #38 | message: "WEB-8 status changed to In Review by Alex Chen", |
| #39 | read: true, |
| #40 | issueId: "i8", |
| #41 | createdAt: "2025-03-19T11:00:00Z", |
| #42 | }, |
| #43 | { |
| #44 | id: "n5", |
| #45 | userId: "u1", |
| #46 | type: "assignment", |
| #47 | title: "New assignment", |
| #48 | message: "You assigned yourself to WEB-8 - Global search and command palette", |
| #49 | read: true, |
| #50 | issueId: "i8", |
| #51 | createdAt: "2025-03-15T10:00:00Z", |
| #52 | }, |
| #53 | ]; |
| #54 |