本文整理汇总了TypeScript中src/server/models/sprint/SprintRepository.SprintRepository类的典型用法代码示例。如果您正苦于以下问题:TypeScript SprintRepository类的具体用法?TypeScript SprintRepository怎么用?TypeScript SprintRepository使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了SprintRepository类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: create
create(req, res, next) {
this.sprintRepository.create(req.body)
.onFulfill((sprint) => {
res.json(sprint);
}).onReject(next);
}
示例2: fetch
fetch(req, res, next, id) {
this.sprintRepository.findById(id)
.onFulfill((sprint) => {
if(! sprint) {
next(new ModelNotFoundError());
}
req.sprint = sprint;
next();
}).onReject(next);
}
示例3: replace
replace(req, res, next) {
this.sprintRepository.replace(req.story, req.body)
.onFulfill((story) => {
res.json(story);
}).onReject(next);
}
示例4: index
index(req, res, next) {
this.sprintRepository.all()
.onFulfill((sprints) => {
res.json(sprints);
}).onReject(next);
}