【发布时间】:2015-01-24 18:21:21
【问题描述】:
我在 Redmine 中使用 rest api 自动创建了很多项目。
但我们的问题是,对于每个项目,我们都需要手动设置“从父项目继承的成员”选项(我不知道正确的拼写)。这非常令人失望。
这是我们创建项目的 sn-p 方式:
$client->api('project')->create(array(
'name' => $project_name,
'identifier' => $project_identifier,
'tracker_ids' => $tracker_ids,
'parent_id' => $produktions_projekt_id));
这项工作很好。但我想添加这样的内容:
'inherited members' => true
'inherited members' => 1
'inherited members' => '1'
我尝试了这三个选项,但没有奏效。希望有人能帮我解决这个问题?
非常感谢!
【问题讨论】:
标签: redmine redmine-api