Commit e1124f5603b2d7e41213b01fdbbddd43b1f8ce32
1 parent
dab880dd
Exists in
master
and in
39 other branches
Minor fix
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/api/models.py
... | ... | @@ -70,7 +70,7 @@ class EmailAddressResource(ModelResource): |
70 | 70 | |
71 | 71 | |
72 | 72 | class MessageResource(ModelResource): |
73 | - emailaddress = fields.ForeignKey(EmailAddressResource, 'from_address', | |
73 | + from_address = fields.ForeignKey(EmailAddressResource, 'from_address', | |
74 | 74 | full=False) |
75 | 75 | |
76 | 76 | class Meta: | ... | ... |