summaryrefslogtreecommitdiff
path: root/client/js/services
diff options
context:
space:
mode:
authormanzerbredes <loic.guegan_secondary@yahoo.fr>2016-02-05 19:35:38 +0100
committermanzerbredes <loic.guegan_secondary@yahoo.fr>2016-02-05 19:35:38 +0100
commitcca5df968e3598b07ee81c1f7f2680f5b9120ec3 (patch)
tree4c8d236f4a49b4daab91ced8b78f5c407e7a8f39 /client/js/services
parenta16df328c05b3ac005a3c05237a069786b8d5d6f (diff)
Add sharedProfile service
Diffstat (limited to 'client/js/services')
-rw-r--r--client/js/services/sharedProfile.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/client/js/services/sharedProfile.js b/client/js/services/sharedProfile.js
new file mode 100644
index 0000000..2a5ab83
--- /dev/null
+++ b/client/js/services/sharedProfile.js
@@ -0,0 +1,11 @@
+
+
+
+mainApp.factory('sharedProfile',[function(){
+ var profile={};
+
+ profile.username="None";
+ profile.projectname="None";
+
+ return profile;
+}]); \ No newline at end of file