Painstakingly added an endpoint to show messages from the current study group of the user

This commit is contained in:
Keannu Christian Bernasol 2023-06-28 00:49:11 +08:00
parent 11d6887af8
commit fbe047e8a2
26 changed files with 223 additions and 47 deletions

View file

@ -8,5 +8,6 @@ urlpatterns = [
path('year_levels/', include('year_levels.urls')),
path('semesters/', include('semesters.urls')),
path('subjects/', include('subjects.urls')),
path('study_groups/', include('study_groups.urls'))
path('study_groups/', include('study_groups.urls')),
path('messages/', include('studygroup_messages.urls'))
]