mirror of
https://github.com/wekan/wekan.git
synced 2025-12-18 16:30:13 +01:00
12 lines
345 B
JavaScript
12 lines
345 B
JavaScript
// Client-side is not implemented
|
|
HTTP.publish = function() {
|
|
throw new Error('HTTP.publish not implemented on client-side');
|
|
};
|
|
|
|
HTTP.publishFormats = function() {
|
|
throw new Error('HTTP.publishFormats not implemented on client-side');
|
|
};
|
|
|
|
HTTP.unpublish = function() {
|
|
throw new Error('HTTP.unpublish not implemented on client-side');
|
|
};
|