Skip to content
Snippets Groups Projects

Superevents

Merged Tanner Prestegard requested to merge superevent into master
2 files
+ 48
45
Compare changes
  • Side-by-side
  • Inline
Files
2
  • Modified events.view_utils.reverse to return an absolute url using
    core.urls.build_absolute_uri.  This is helpful for when we issue
    alerts without a request object available to construct the absolute
    url.  Also updated the corresponding *toDict methods so as to
    take advantage of this.
+ 2
2
@@ -42,12 +42,12 @@ urlpatterns = [
url(r'^search/$', search.views.search, name="mainsearch"),
# API URLs
url(r'^apibasic/', include('events.api.urls', app_name="api",
namespace="basic")),
url(r'^apiweb/', include('events.api.urls', app_name="api",
namespace="shib")),
url(r'^api/', include('events.api.urls', app_name="api",
namespace="x509")),
url(r'^apibasic/', include('events.api.urls', app_name="api",
namespace="basic")),
# Uncomment the admin/doc line below and add 'django.contrib.admindocs'
# to INSTALLED_APPS to enable admin documentation:
Loading