diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2019-11-02 08:23:35 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2019-11-02 08:23:35 +0000 |
commit | 3afd17f83e6cc5c3314c7dab0499d56deda2ec12 (patch) | |
tree | a5ba9f0eeda5f38a6dfdd4b05e6849a751759c57 /test/fixtures | |
parent | 7c0ecb4703a16b2c4345e8abd7150412ea86d1ce (diff) | |
download | redmine-3afd17f83e6cc5c3314c7dab0499d56deda2ec12.tar.gz redmine-3afd17f83e6cc5c3314c7dab0499d56deda2ec12.zip |
Allow import time entries for other users (#32196).
Patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/trunk@18890 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/fixtures')
-rw-r--r-- | test/fixtures/files/import_time_entries.csv | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/fixtures/files/import_time_entries.csv b/test/fixtures/files/import_time_entries.csv index 1ff8075ef..0628e5203 100644 --- a/test/fixtures/files/import_time_entries.csv +++ b/test/fixtures/files/import_time_entries.csv @@ -1,5 +1,5 @@ -row;issue_id;date;hours;comment;activity;overtime -1;;2020-01-01;1;Some Design;Design;yes -2;;2020-01-02;2;Some Development;Development;yes -3;1;2020-01-03;3;Some QA;QA;no -4;2;2020-01-04;4;Some Inactivity;Inactive Activity;no +row;issue_id;date;hours;comment;activity;overtime;user_id +1;;2020-01-01;1;Some Design;Design;yes;2 +2;;2020-01-02;2;Some Development;Development;yes;2 +3;1;2020-01-03;3;Some QA;QA;no;3 +4;2;2020-01-04;4;Some Inactivity;Inactive Activity;no;2 |