aboutsummaryrefslogtreecommitdiff
path: root/src/web/views/api/v3/common.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-26 07:04:58 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-26 07:04:58 +0200
commita01f162119eff58bc1148f0b8105cfec714a99f5 (patch)
tree094df2214961244e3e70402bd76ad207b2bf1167 /src/web/views/api/v3/common.py
parentRenamed a function to is_authorized? (diff)
parentUpdated preprocessors for the v3 Article API. (diff)
downloadnewspipe-a01f162119eff58bc1148f0b8105cfec714a99f5.tar.gz
newspipe-a01f162119eff58bc1148f0b8105cfec714a99f5.tar.bz2
newspipe-a01f162119eff58bc1148f0b8105cfec714a99f5.zip
Merge branch 'new-api' of github.com:JARR/JARR into new-api
Diffstat (limited to 'src/web/views/api/v3/common.py')
-rw-r--r--src/web/views/api/v3/common.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/web/views/api/v3/common.py b/src/web/views/api/v3/common.py
index 00e5b3f9..bd20ad38 100644
--- a/src/web/views/api/v3/common.py
+++ b/src/web/views/api/v3/common.py
@@ -47,3 +47,9 @@ class AbstractProcessor():
search_params["filters"] = []
search_params["filters"].append(filt)
+
+ def post_put_preprocessor(self, data=None, **kw):
+ pass
+
+ def delete_preprocessor(self, instance_id=None, **kw):
+ pass
bgstack15