Plato on Github
Report Home
services/designer_following.js
Maintainability
79.45
Lines of code
16
Difficulty
4.85
Estimated Errors
0.04
Function weight
By Complexity
By SLOC
'use strict'; /** * @ngdoc service * @name Sns * @description * # designerfollowingFactory * Factory in the Sns. */ angular.module('SnsApp') .factory('designerfollowingFactory', ['$resource', function($resource) { return $resource('/api/v1/users?filter=popular', {}, { get: { method: 'GET' } }); }]);