nci/static/js/app/actions/project.js

12 lines
149 B
JavaScript
Raw Normal View History

2015-05-03 23:04:51 +00:00
'use strict';
define(['reflux'], function(Reflux) {
var Actions = Reflux.createActions([
2015-05-07 20:53:46 +00:00
'run',
2015-07-09 20:12:24 +00:00
'readAll',
'read'
2015-05-03 23:04:51 +00:00
]);
return Actions;
});