diff --git a/app/index_store.html b/app/index_store.html
new file mode 100644
index 000000000..43b5f8b22
--- /dev/null
+++ b/app/index_store.html
@@ -0,0 +1,325 @@
+
+
+
+
+
+ API Designer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/scripts/services/raml-repository.js b/app/scripts/services/raml-repository.js
index 31e712a3e..3e9ad385a 100644
--- a/app/scripts/services/raml-repository.js
+++ b/app/scripts/services/raml-repository.js
@@ -163,9 +163,14 @@
service.loadMeta = function loadMeta(file) {
var metaFile = new RamlFile(file.path + '.meta');
+ //var metaFile = new RamlFile(file.path);
return service.loadFile(metaFile).then(
- function success(file) {
- return JSON.parse(file.contents);
+ //function success(file) {
+ function success() {
+ //return JSON.parse(file.contents);
+ // pour le moment on ne traite pas les meta
+ //return {};
+ return { key: 'value' };
},
function failure() {