mirror of
https://github.com/wekan/wekan.git
synced 2025-12-19 08:50:13 +01:00
13 lines
345 B
JavaScript
13 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');
|
||
|
|
};
|