OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/mocha/factories/status_factory.js

6 lines
232 B

Factory.define('Status', Timeline.Status)
.sequence('id')
.sequence('name', function (i) {return "Status No. " + i;})
.sequence('is_default', function (i) {return i === 0;})
.sequence('position')
.attr('is_closed', false);