summaryrefslogtreecommitdiff
path: root/client/js/services/sharedProfile.js
blob: 2a5ab830fd397b23906aa1464dd9dd9892562f00 (plain)
1
2
3
4
5
6
7
8
9
10
11



mainApp.factory('sharedProfile',[function(){
    var profile={};
   
    profile.username="None";
    profile.projectname="None";

    return profile;
}]);