stable
Clone or download
Read-only
part of story #32280 Complete the "move artifact" feature In the duck typed artifact move files, the tracker which will receive the current artifact is sometimes named "target_tracker", sometimes "destination_tracker" and its fields sometimes named "target_field", sometimes named "destination_field". The goal of this contribution is to have a consistent naming for those trackers and fields. "destination" making more sense, we'll keep it. -- no functional change expected Change-Id: I9ef186582a46a1f9c756c835d6168ad71a849300
Modified Files
Name | ||||
---|---|---|---|---|
M | plugins/tracker/include/REST/v1/Move/DryRunMover.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/REST/v1/Move/MoveDryRun.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Action/CanPermissionsBeFullyMovedVerifier.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Action/CanStaticFieldValuesBeFullyMovedVerifier.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Action/CanUserFieldValuesBeFullyMovedVerifier.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Action/CanUserGroupValuesBeFullyMovedVerifier.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Action/CollectDryRunTypingField.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Action/DryRunDuckTypingFieldCollector.php | +44 | −44 | Go to diff View file |
M | plugins/tracker/include/Tracker/Action/FieldCanBeEasilyMigratedVerifier.php | +11 | −11 | Go to diff View file |
M | plugins/tracker/include/Tracker/Action/MegaMoverArtifactByDuckTyping.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/Action/MoveArtifactByDuckTyping.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Action/VerifyFieldCanBeEasilyMigrated.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Action/VerifyPermissionsCanBeFullyMoved.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Action/VerifyStaticFieldValuesCanBeFullyMoved.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Action/VerifyUserFieldValuesCanBeFullyMoved.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Action/VerifyUserGroupValuesCanBeFullyMoved.php | +5 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/ListFields/FieldValueMatcher.php | +9 | −9 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/ListFields/RetrieveMatchingBindValueByDuckTyping.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/ListFields/RetrieveMatchingUserValue.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/ListFields/RetrieveMatchingValueByDuckTyping.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/XML/Updater/BindValueForDuckTypingUpdater.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/XML/Updater/MoveChangesetXMLDuckTypingUpdater.php | +12 | −12 | Go to diff View file |
M | plugins/tracker/include/Tracker/XML/Updater/MoveChangesetXMLSemanticUpdater.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/XML/Updater/UpdateBindValueByDuckTyping.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Stub/CollectDryRunTypingFieldStub.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Stub/MoveArtifactByDuckTypingStub.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Stub/MoveDryRunStub.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Stub/RetrieveMatchingBindValueByDuckTypingStub.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Stub/RetrieveMatchingUserValueStub.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Stub/RetrieveMatchingValueByDuckTypingStub.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Stub/VerifyFieldCanBeEasilyMigratedStub.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Stub/VerifyPermissionsCanBeFullyMovedStub.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Stub/VerifyStaticFieldValuesCanBeFullyMovedStub.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Stub/VerifyUserFieldValuesCanBeFullyMovedStub.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Stub/VerifyUserGroupValuesCanBeFullyMovedStub.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Action/CanStaticFieldValuesBeFullyMovedVerifierTest.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Action/CanUserFieldValuesBeFullyMovedVerifierTest.php | +11 | −11 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Action/CanUserGroupValuesBeFullyMovedVerifierTest.php | +9 | −9 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Action/DryRunDuckTypingFieldCollectorTest.php | +95 | −95 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Action/FieldCanBeEasilyMigratedVerifierTest.php | +7 | −7 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Field/ListFields/FieldValueMatcherTest.php | +20 | −20 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/XML/Updater/MoveChangesetXMLSemanticUpdaterTest.php | +109 | −109 | Go to diff View file |