Source code for oioioi.notifications.urls

from django.urls import re_path

from oioioi.notifications import views

[docs]app_name = 'notifications'
[docs]noncontest_patterns = [ re_path( r'^notifications/authenticate/$', views.notifications_authenticate_view, name='notifications_authenticate', ), ]