From 1f2d16d47b383fe445f17d13e32409505a3b4356 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Tue, 26 Apr 2016 07:04:48 +0200 Subject: Renamed a function to is_authorized? --- src/web/views/api/v3/feed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/web/views/api/v3/feed.py') diff --git a/src/web/views/api/v3/feed.py b/src/web/views/api/v3/feed.py index ef1b415f..a97aa415 100644 --- a/src/web/views/api/v3/feed.py +++ b/src/web/views/api/v3/feed.py @@ -11,7 +11,7 @@ class FeedProcessor(AbstractProcessor): # instance of the model. contr = FeedController(current_user.id) feed = contr.get(id=instance_id) - if not self.is_authorized_to_modify(current_user, feed): + if not self.is_authorized(current_user, feed): raise ProcessingException(description='Not Authorized', code=401) -- cgit