Skip to content
Snippets Groups Projects
Commit 2554f781 authored by Tanner Prestegard's avatar Tanner Prestegard Committed by GraceDB
Browse files

Add public access switch decorator to public alerts view

parent 8dbb1e34
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@ import os
from lal import gpstime
from django.urls import reverse
from django.utils.decorators import method_decorator
from django.views.generic.detail import DetailView
from django.views.generic import ListView
......@@ -12,6 +13,7 @@ from core.file_utils import get_file_list
from events.models import EMGroup
from events.mixins import DisplayFarMixin
from events.permission_utils import is_external
from ligoauth.decorators import public_if_public_access_allowed
from .mixins import ExposeHideMixin, OperatorSignoffMixin, \
AdvocateSignoffMixin, PermissionsFilterMixin, ConfirmGwFormMixin
from .models import Superevent, VOEvent
......@@ -120,7 +122,7 @@ class SupereventFileList(SupereventDetailView):
# handled through the API. Links on the file list page point to the
# API file download page.
@method_decorator(public_if_public_access_allowed, name='dispatch')
class SupereventPublic(DisplayFarMixin, ListView):
model = Superevent
template_name = 'superevents/public_alerts.html'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment