Allow showing of note timestamp in api

This commit is contained in:
keannu125 2023-02-25 16:48:43 +08:00
parent 6f21d19bbd
commit d1645a6db7
4 changed files with 56 additions and 1 deletions

Binary file not shown.

View file

@ -0,0 +1,39 @@
# Generated by Django 4.1.7 on 2023-02-24 08:29
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
import django.utils.timezone
import simple_history.models
class Migration(migrations.Migration):
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('notes', '0003_alter_note_content'),
]
operations = [
migrations.CreateModel(
name='HistoricalNote',
fields=[
('id', models.BigIntegerField(auto_created=True, blank=True, db_index=True, verbose_name='ID')),
('title', models.CharField(max_length=20)),
('content', models.CharField(max_length=1024)),
('date_created', models.DateTimeField(default=django.utils.timezone.now, editable=False)),
('history_id', models.AutoField(primary_key=True, serialize=False)),
('history_date', models.DateTimeField(db_index=True)),
('history_change_reason', models.CharField(max_length=100, null=True)),
('history_type', models.CharField(choices=[('+', 'Created'), ('~', 'Changed'), ('-', 'Deleted')], max_length=1)),
('history_user', models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to=settings.AUTH_USER_MODEL)),
],
options={
'verbose_name': 'historical note',
'verbose_name_plural': 'historical notes',
'ordering': ('-history_date', '-history_id'),
'get_latest_by': ('history_date', 'history_id'),
},
bases=(simple_history.models.HistoricalChanges, models.Model),
),
]

View file

@ -0,0 +1,16 @@
# Generated by Django 4.1.7 on 2023-02-24 08:53
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('notes', '0004_historicalnote'),
]
operations = [
migrations.DeleteModel(
name='HistoricalNote',
),
]

View file

@ -5,4 +5,4 @@ from .models import Note
class NoteSerializer(serializers.HyperlinkedModelSerializer):
class Meta:
model = Note
fields = ('id', 'title', 'content')
fields = ('id', 'title', 'content', 'date_created')