-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #312 from IFB-ElixirFr/dependabot/pip/djangorestfr…
…amework-3.15.2 Bump djangorestframework from 3.11.2 to 3.15.2
- Loading branch information
Showing
5 changed files
with
52 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
ifbcat_api/migrations/0194_alter_event_maintainers_alter_training_maintainers.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Generated by Django 4.2.14 on 2024-08-05 09:24 | ||
|
||
from django.conf import settings | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('ifbcat_api', '0193_alter_team_ifbmembership'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='event', | ||
name='maintainers', | ||
field=models.ManyToManyField( | ||
blank=True, | ||
help_text='Maintainer(s) can edit this object.', | ||
related_name='+', | ||
to=settings.AUTH_USER_MODEL, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name='training', | ||
name='maintainers', | ||
field=models.ManyToManyField( | ||
blank=True, | ||
help_text='Maintainer(s) can edit this object.', | ||
related_name='+', | ||
to=settings.AUTH_USER_MODEL, | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
from django.conf.urls import url | ||
from django.urls import path, re_path | ||
|
||
from ifbcat_vanilla_front import views | ||
|
||
app_name = 'vfront' | ||
urlpatterns = [ | ||
url(r'^$', views.index, name='home'), | ||
url(r'^platform/$', views.TeamListView.as_view(), name='team-list'), | ||
url(r'^platform/(?P<slug>[-\w ]+)/$', views.TeamDetailView.as_view(), name='team-detail'), | ||
url(r'^event/$', views.EventListView.as_view(), name='event-list'), | ||
url(r'^event/(?P<pk>\d+)/$', views.EventDetailView.as_view(), name='event-detail'), | ||
url(r'^training/$', views.TrainingListView.as_view(), name='training-list'), | ||
url(r'^training/(?P<pk>\d+)/$', views.TrainingDetailView.as_view(), name='training-detail'), | ||
path('', views.index, name='home'), | ||
path('platform/', views.TeamListView.as_view(), name='team-list'), | ||
re_path(r'^platform/(?P<slug>[-\w ]+)/$', views.TeamDetailView.as_view(), name='team-detail'), | ||
path('event/', views.EventListView.as_view(), name='event-list'), | ||
path('event/<int:pk>/', views.EventDetailView.as_view(), name='event-detail'), | ||
path('training/', views.TrainingListView.as_view(), name='training-list'), | ||
path('training/<int:pk>/', views.TrainingDetailView.as_view(), name='training-detail'), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters