Skip to content

Commit

Permalink
[#2637] Support import/export of ZaakTypeConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
pi-sigma committed Jul 24, 2024
1 parent 84a27e8 commit 903f6e2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/open_inwoner/openzaak/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from django.forms.models import BaseInlineFormSet
from django.utils.translation import gettext_lazy as _, ngettext

from import_export.admin import ImportExportMixin
from solo.admin import SingletonModelAdmin

from open_inwoner.ckeditor5.widgets import CKEditorWidget
Expand Down Expand Up @@ -244,7 +245,7 @@ def has_delete_permission(self, request, obj=None):


@admin.register(ZaakTypeConfig)
class ZaakTypeConfigAdmin(admin.ModelAdmin):
class ZaakTypeConfigAdmin(ImportExportMixin, admin.ModelAdmin):
inlines = [
ZaakTypeInformatieObjectTypeConfigInline,
ZaakTypeStatusTypeConfigInline,
Expand Down

0 comments on commit 903f6e2

Please sign in to comment.