http.publish.client.api.js 345 B

123456789101112
  1. // Client-side is not implemented
  2. HTTP.publish = function() {
  3. throw new Error('HTTP.publish not implemented on client-side');
  4. };
  5. HTTP.publishFormats = function() {
  6. throw new Error('HTTP.publishFormats not implemented on client-side');
  7. };
  8. HTTP.unpublish = function() {
  9. throw new Error('HTTP.unpublish not implemented on client-side');
  10. };