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 { Activity } from "../../domain/entities"; |
| #2 | |
| #3 | export const activities: Activity[] = [ |
| #4 | { |
| #5 | id: "a1", |
| #6 | issueId: "i4", |
| #7 | userId: "u1", |
| #8 | type: "status_change", |
| #9 | oldValue: "todo", |
| #10 | newValue: "in-progress", |
| #11 | createdAt: "2025-03-16T09:00:00Z", |
| #12 | }, |
| #13 | { |
| #14 | id: "a2", |
| #15 | issueId: "i4", |
| #16 | userId: "u1", |
| #17 | type: "assignment", |
| #18 | newValue: "u1", |
| #19 | createdAt: "2025-03-15T10:00:00Z", |
| #20 | }, |
| #21 | { |
| #22 | id: "a3", |
| #23 | issueId: "i8", |
| #24 | userId: "u1", |
| #25 | type: "status_change", |
| #26 | oldValue: "in-progress", |
| #27 | newValue: "in-review", |
| #28 | createdAt: "2025-03-19T11:00:00Z", |
| #29 | }, |
| #30 | { |
| #31 | id: "a4", |
| #32 | issueId: "i2", |
| #33 | userId: "u2", |
| #34 | type: "status_change", |
| #35 | oldValue: "in-review", |
| #36 | newValue: "done", |
| #37 | createdAt: "2025-03-09T12:00:00Z", |
| #38 | }, |
| #39 | { |
| #40 | id: "a5", |
| #41 | issueId: "i6", |
| #42 | userId: "u1", |
| #43 | type: "assignment", |
| #44 | newValue: "u3", |
| #45 | createdAt: "2025-03-15T10:30:00Z", |
| #46 | }, |
| #47 | ]; |
| #48 |