skip the flow root call for projects

This commit is contained in:
jbai 2016-03-02 19:39:06 -08:00
parent 9be8cc187b
commit eeb90d755a

View File

@ -2,6 +2,11 @@ var flowsController = null;
App.FlowsRoute = Ember.Route.extend({
setupController: function(controller) {
flowsController = controller;
var location = window.location.hash;
if (location != '#/flows/page/1')
{
return;
}
currentTab = 'Flows';
updateActiveTab();
var url = 'api/v1/flows?size=10&page=1';