stable

Clone or download

Read-only

story #8140: have a field "last modified by" (part 1)

- field is configurable in "manage field usage" - can be added to report and table - is excluded from SOAP - is export/ import with tracker structure (new project/ tracker) - appears in mail - csv import ignores the field and adds a warning - REST GET /artifacts/:id and /artifacts/:id/changesets returns the field - kanban can have card field and can be used to filter upon Change-Id: I79cdf0925cbada3532bc1156e9873fa3d5dd8547

Modified Files

Name
M plugins/agiledashboard/www/js/kanban/src/app/in-properties-filter/in-properties-filter.js +1 −0 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/in-properties-filter/in-properties-filter.spec.js +3 −0 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-item/card-fields-service.js +13 −3 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Tracker_Artifact.class.php +22 −0 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Tracker_Artifact_Changeset.class.php +2 −2 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Tracker_Artifact_ChangesetFactory.class.php +1 −1 Go to diff View file
A plugins/tracker/include/Tracker/Artifact/Tracker_Artifact_ChangesetFactoryBuilder.class.php +32 −0 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElementFactory.class.php +1 −0 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_FieldVisitor.class.php +1 −0 Go to diff View file
A plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_LastModifiedBy.class.php +339 −0 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_List_Bind_Users.class.php +18 −0 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_List_Bind_UsersValue.class.php +13 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_SubmittedBy.class.php +4 −0 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_SubmittedOn.class.php +4 −0 Go to diff View file
A plugins/tracker/include/Tracker/FormElement/View/Admin/Field/LastModifiedBy.class.php +54 −0 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/View/Admin/Visitor.class.php +20 −33 Go to diff View file
M plugins/tracker/include/Tracker/XML/Updater/FieldChangeXMLUpdaterVisitor.class.php +5 −1 Go to diff View file
M plugins/tracker/include/autoload.php +5 −2 Go to diff View file
M plugins/tracker/site-content/en_US/tracker.tab +3 −0 Go to diff View file
M plugins/tracker/site-content/fr_FR/tracker.tab +3 −0 Go to diff View file
M plugins/tracker/tests/rest/XML/ArtifactTest.php +3 −3 Go to diff View file
M tests/rest/ArtifactsChangesetsTest.php +55 −0 Go to diff View file
M tests/rest/ArtifactsTest.php +1 −0 Go to diff View file
M tests/rest/_fixtures/tuleap_agiledashboard_template.xml +10 −0 Go to diff View file