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