mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-21 17:16:56 +03:00
exclude 'fans' from ReporterForm tests (#1434)
This commit is contained in:
parent
b1abebdb97
commit
3172710d12
|
@ -31,7 +31,7 @@ class ReporterType(DjangoObjectType):
|
||||||
class ReporterForm(forms.ModelForm):
|
class ReporterForm(forms.ModelForm):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = Reporter
|
model = Reporter
|
||||||
exclude = ("pets", "email")
|
exclude = ("pets", "email", "fans")
|
||||||
|
|
||||||
|
|
||||||
class MyForm(forms.Form):
|
class MyForm(forms.Form):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user