Commit 4a2cc112 authored by Jérome Perrin's avatar Jérome Perrin

JIO: rename method to have a jio_ prefix like the reset of JIO interface

parent 5bf9c7d0
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
///////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////
// Acquired methods // Acquired methods
///////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////
.declareAcquiredMethod("aq_allDocs", "allDocs") .declareAcquiredMethod("aq_allDocs", "jio_allDocs")
.declareAcquiredMethod("pleaseRedirectMyHash", "pleaseRedirectMyHash") .declareAcquiredMethod("pleaseRedirectMyHash", "pleaseRedirectMyHash")
.declareAcquiredMethod("whoWantToDisplayThisDocument", .declareAcquiredMethod("whoWantToDisplayThisDocument",
"whoWantToDisplayThisDocument") "whoWantToDisplayThisDocument")
......
...@@ -270,7 +270,7 @@ ...@@ -270,7 +270,7 @@
// Handle acquisition // Handle acquisition
///////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////
// Bridge to jio gadget // Bridge to jio gadget
.allowPublicAcquisition("allDocs", function (param_list) { .allowPublicAcquisition("jio_allDocs", function (param_list) {
return this.getDeclaredGadget("jio") return this.getDeclaredGadget("jio")
.push(function (jio_gadget) { .push(function (jio_gadget) {
return jio_gadget.allDocs.apply(jio_gadget, param_list); return jio_gadget.allDocs.apply(jio_gadget, param_list);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment