stable

Clone or download

Read-only

feat: Display User columns: Submitted by, Last update by

part of story #38648 Choose my own columns based on semantics and always there fields How to test: - Enable the feature flag: $ tuleap config-set feature_flag_enable_tql_select 1 - Write a query using SELECT @submitted_by, @last_update_by and save the report. - In the table, you should see translated "Submitted by" and "Last update by" columns with an image of the user's avatar and their display name. You can click on the link to go to the user profile. Change-Id: I5f0107681645c943c03f3e111419849a453bfc9c

Modified Files

Name
M plugins/crosstracker/scripts/cross-tracker/po/fr_FR.po +3 −0 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/po/pt_BR.po +9 −0 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/api/ArtifactsTableBuilder.test.ts +50 −0 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/api/ArtifactsTableBuilder.ts +17 −0 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/api/cross-tracker-rest-api-types.ts +14 −0 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/components/selectable-table/SelectableCell.test.ts +63 −15 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/components/selectable-table/SelectableCell.vue +21 −0 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/components/selectable-table/SelectableTable.vue +8 −0 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/domain/ArtifactsTable.ts +16 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/domain/ColumnName.ts +4 −0 Go to diff View file