Skip to content

Commit

Permalink
Merge branch 'main' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
eepMoody authored Oct 26, 2023
2 parents fd98109 + 5836ad5 commit fb8e03a
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion api_v2/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class Migration(migrations.Migration):
('creature', models.ForeignKey(help_text='The creature to which this action belongs.', on_delete=django.db.models.deletion.CASCADE, to='api_v2.creature')),
],
options={
'abstract': False,
'verbose_name_plural': 'armor',
},
),
migrations.CreateModel(
Expand Down
1 change: 0 additions & 1 deletion api_v2/models/abstracts.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ class Meta:
abstract = True
ordering = ['pk']


class Benefit(HasName, HasDescription):
class Meta:
abstract = True
Expand Down
4 changes: 0 additions & 4 deletions api_v2/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,3 @@ class RaceViewSet(viewsets.ReadOnlyModelViewSet):
queryset = models.Race.objects.all().order_by('pk')
serializer_class = serializers.RaceSerializer
filterset_class = RaceFilterSet




0 comments on commit fb8e03a

Please sign in to comment.