diff options
author | Rodney Ewing <ewing.rj@gmail.com> | 2013-08-07 12:50:59 -0700 |
---|---|---|
committer | Rodney Ewing <ewing.rj@gmail.com> | 2013-08-20 08:09:29 -0700 |
commit | 1cca2a6857d529bb3927b9e4b0d41ac1534ae06b (patch) | |
tree | 39059255a663166b63ca3b904491855aee43fdd4 | |
parent | d0708da727b72cfc95defe14dd6780d2cba0a0b7 (diff) | |
download | mediagoblin-1cca2a6857d529bb3927b9e4b0d41ac1534ae06b.tar.lz mediagoblin-1cca2a6857d529bb3927b9e4b0d41ac1534ae06b.tar.xz mediagoblin-1cca2a6857d529bb3927b9e4b0d41ac1534ae06b.zip |
Pep 8
-rw-r--r-- | mediagoblin/notifications/views.py | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/mediagoblin/notifications/views.py b/mediagoblin/notifications/views.py index cda7f0af..5a67c1ba 100644 --- a/mediagoblin/notifications/views.py +++ b/mediagoblin/notifications/views.py @@ -14,19 +14,14 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -from mediagoblin.tools.response import render_to_response, render_404, redirect +from mediagoblin.tools.response import redirect from mediagoblin.tools.translate import pass_to_ugettext as _ -from mediagoblin.decorators import (uses_pagination, get_user_media_entry, - get_media_entry_by_id, - require_active_login, user_may_delete_media, user_may_alter_collection, - get_user_collection, get_user_collection_item, active_user_from_url) - +from mediagoblin.decorators import get_user_media_entry, require_active_login from mediagoblin import messages from mediagoblin.notifications import add_comment_subscription, \ - silence_comment_subscription, mark_comment_notification_seen + silence_comment_subscription, mark_comment_notification_seen -from werkzeug.exceptions import BadRequest @get_user_media_entry @require_active_login @@ -41,6 +36,7 @@ def subscribe_comments(request, media): return redirect(request, location=media.url_for_self(request.urlgen)) + @get_user_media_entry @require_active_login def silence_comments(request, media): |