stable

Clone or download

Read-only

feat: display pull-request's creation date and creator

part of story #33006 Create filters on my PR How to test: --> The date of creation and creators are displayed below the titles. Change-Id: I043ba0861adb5ad12ea3f76f2e048145b7ab8f23

Modified Files

Name
A plugins/pullrequest/scripts/lib/pull-request-stub/.gitignore +1 −0 Go to diff View file
A plugins/pullrequest/scripts/lib/pull-request-stub/README.md +25 −0 Go to diff View file
A plugins/pullrequest/scripts/lib/pull-request-stub/package.json +29 −0 Go to diff View file
A plugins/pullrequest/scripts/lib/pull-request-stub/pnpm-lock.yaml +18 −0 Go to diff View file
A plugins/pullrequest/scripts/lib/pull-request-stub/src/main.ts +123 −0 Go to diff View file
A plugins/pullrequest/scripts/lib/pull-request-stub/tsconfig.json +7 −0 Go to diff View file
A plugins/pullrequest/scripts/lib/pull-request-stub/vite.config.ts +31 −0 Go to diff View file
M plugins/pullrequest/scripts/lib/rest-api-types/src/pull-request.ts +1 −0 Go to diff View file
M plugins/pullrequest/scripts/pullrequest-homepage/package.json +4 −0 Go to diff View file
M plugins/pullrequest/scripts/pullrequest-homepage/pnpm-lock.yaml +16 −0 Go to diff View file
M plugins/pullrequest/scripts/pullrequest-homepage/po/fr_FR.po +6 −0 Go to diff View file
M plugins/pullrequest/scripts/pullrequest-homepage/src/api/tuleap-rest-querier.test.ts +6 −2 Go to diff View file
M plugins/pullrequest/scripts/pullrequest-homepage/src/components/List/PullRequest/PullRequestBrokenBadge.test.ts +3 −5 Go to diff View file
M plugins/pullrequest/scripts/pullrequest-homepage/src/components/List/PullRequest/PullRequestCard.test.ts +6 −40 Go to diff View file
M plugins/pullrequest/scripts/pullrequest-homepage/src/components/List/PullRequest/PullRequestCard.vue +3 −20 Go to diff View file
A plugins/pullrequest/scripts/pullrequest-homepage/src/components/List/PullRequest/PullRequestCreationDate.test.ts +84 −0 Go to diff View file
A plugins/pullrequest/scripts/pullrequest-homepage/src/components/List/PullRequest/PullRequestCreationDate.vue +104 −0 Go to diff View file
A plugins/pullrequest/scripts/pullrequest-homepage/src/components/List/PullRequest/PullRequestSummary.test.ts +76 −0 Go to diff View file
A plugins/pullrequest/scripts/pullrequest-homepage/src/components/List/PullRequest/PullRequestSummary.vue +62 −0 Go to diff View file
M plugins/pullrequest/scripts/pullrequest-homepage/src/components/List/PullRequestsList.test.ts +4 −4 Go to diff View file
M plugins/pullrequest/scripts/pullrequest-homepage/src/injection-symbols.ts +6 −0 Go to diff View file
M plugins/pullrequest/scripts/pullrequest-homepage/src/pullrequest-homepage.ts +13 −1 Go to diff View file
M plugins/pullrequest/scripts/pullrequest-homepage/tests/injection-symbols-stub.ts +15 −1 Go to diff View file
M plugins/pullrequest/templates/pullrequest.mustache +5 −1 Go to diff View file