Dataset/JS/AngularCosmoPage/users.js (13 lines of code) (raw):

/************************************************** * Users Factory * * Store data about the current user * **************************************************/ angular.module('cosmo').factory('Users', function() { return { id: '', username: '', name: '', bio: '', email: '', facebook: '', twitter: '', photo: '', role: '' }; });