UNPKG

strong-arc

Version:

A visual suite for the StrongLoop API Platform

20 lines (16 loc) 326 B
// Copyright StrongLoop 2014 Landing.service('LandingService', [ '$q', 'ArcApp', 'Project', function ($q, ArcApp, Project) { var svc = this; svc.getApps = function() { return ArcApp.list(); }; svc.getCurrentProject = function() { return Project.current(); }; return svc; } ]);