Sha256: fe49962acba86530259d72604e41f990ad3bdf72192349c741a3c1ae2e8896a5
Contents?: true
Size: 393 Bytes
Versions: 20
Compression:
Stored size: 393 Bytes
Contents
;(function() { "use strict"; // Provide access to all group profiles. function ProfilesCtrl(Profiles) { var self = this; Profiles.getAll().then(function(profiles) { self.members = profiles; }); } // Create a module and register the controllers. angular.module('socialNetworking.controllers') .controller('ProfilesCtrl', ['Profiles', ProfilesCtrl]); })();
Version data entries
20 entries across 16 versions & 1 rubygems