Merge "Fix 'Constructor not ready' exception when injecting DashboardsCollection"

This commit is contained in:
Martin Fick
2012-11-19 17:42:30 -08:00
committed by Gerrit Code Review

View File

@@ -34,9 +34,9 @@ public class Module extends RestApiModule {
get(PROJECT_KIND, "parent").to(GetParent.class);
put(PROJECT_KIND, "parent").to(SetParent.class);
child(PROJECT_KIND, "dashboards").to(DashboardsCollection.class);
get(DASHBOARD_KIND).to(GetDashboard.class);
put(DASHBOARD_KIND).to(SetDashboard.class);
delete(DASHBOARD_KIND).to(DeleteDashboard.class);
child(PROJECT_KIND, "dashboards").to(DashboardsCollection.class);
}
}