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

@ -1,4 +1,4 @@
# Generated by Django 4.2.2 on 2023-06-27 13:08
# Generated by Django 4.2.2 on 2023-06-27 15:21
from django.db import migrations, models
import django.db.models.deletion
@ -18,6 +18,7 @@ class Migration(migrations.Migration):
name='StudyGroup',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(max_length=48)),
('x', models.FloatField(null=True)),
('y', models.FloatField(null=True)),
('active', models.BooleanField(default=False)),