我们为大多数用户故事添加了一组通用任务。目前我们手动添加这些任务并希望自动化它。 我已经看到使用Rest API的解决方案,但我们宁愿在Rally中使用Custom App来保持所有集成。 我没有找到任何示例显示如何使用Rally SDK创建任务。
答案 0 :(得分:0)
我在文档中查看此示例,其中显示了如何使用模型执行完整的创建/读取/更新/删除周期:
https://help.rallydev.com/apps/2.0/doc/#!/guide/data_models
对于任务,创建看起来像这样:
Rally.data.ModelFactory.getModel({
type: 'Task',
success: function(taskModel) {
var newTask = Ext.create(taskModel, {
Name: 'Do it',
WorkProduct: '/hierarchicalrequirement/12345' //the story to link it to
});
newTask.save({
callback: function(result, operation) {
if(operation.wasSuccessful()) {
console.log('created task', result.get('ObjectID'));
}
}
});
}
});