aboutsummaryrefslogtreecommitdiff
path: root/src/web/views/api/v3/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/views/api/v3/common.py')
-rw-r--r--src/web/views/api/v3/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/views/api/v3/common.py b/src/web/views/api/v3/common.py
index f0dd45ab..bd20ad38 100644
--- a/src/web/views/api/v3/common.py
+++ b/src/web/views/api/v3/common.py
@@ -26,7 +26,7 @@ def auth_func(*args, **kw):
class AbstractProcessor():
- def is_authorized_to_modify(self, user, obj):
+ def is_authorized(self, user, obj):
return user.id == obj.user_id
def get_single_preprocessor(self, instance_id=None, **kw):
bgstack15