diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-05-14 18:01:13 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-05-14 18:01:13 +0000 |
commit | 7ee38a95a0052ddc544137f32fcf9114e5ffabb9 (patch) | |
tree | 363d189e6aca2fd389c8f58ff58ed96e35fdcd6a /test/fixtures/issues.yml | |
parent | 06e44b8e643797c8d5a11478ef6605f49c7220e0 (diff) | |
download | redmine-7ee38a95a0052ddc544137f32fcf9114e5ffabb9.tar.gz redmine-7ee38a95a0052ddc544137f32fcf9114e5ffabb9.zip |
Fixed: Calendar and Gantt show private subprojects even if current user is not a member of them (#1217).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1431 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/fixtures/issues.yml')
-rw-r--r-- | test/fixtures/issues.yml | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/test/fixtures/issues.yml b/test/fixtures/issues.yml index 4f42d93c4..48195a7b7 100644 --- a/test/fixtures/issues.yml +++ b/test/fixtures/issues.yml @@ -71,4 +71,20 @@ issues_005: assigned_to_id:
author_id: 2
status_id: 1
-
+issues_006:
+ created_on: <%= 1.minute.ago.to_date.to_s(:db) %>
+ project_id: 5
+ updated_on: <%= 1.minute.ago.to_date.to_s(:db) %>
+ priority_id: 4
+ subject: Issue of a private subproject
+ id: 6
+ fixed_version_id:
+ category_id:
+ description: This is an issue of a private subproject of cookbook
+ tracker_id: 1
+ assigned_to_id:
+ author_id: 2
+ status_id: 1
+ start_date: <%= Date.today.to_s(:db) %>
+ due_date: <%= 1.days.from_now.to_date.to_s(:db) %>
+
\ No newline at end of file |