Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-rest-framework
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
django-rest-framework
Commits
1ecbeebb
Commit
1ecbeebb
authored
Jan 26, 2017
by
Mariusz Felisiak
Committed by
Tom Christie
Jan 26, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed #4574 -- Removed multi-table inheritance auto created PK from serialize. (#4852)
parent
21166a3a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
+6
-1
rest_framework/utils/model_meta.py
+6
-1
No files found.
rest_framework/utils/model_meta.py
View file @
1ecbeebb
...
@@ -76,7 +76,12 @@ def _get_forward_relationships(opts):
...
@@ -76,7 +76,12 @@ def _get_forward_relationships(opts):
Returns an `OrderedDict` of field names to `RelationInfo`.
Returns an `OrderedDict` of field names to `RelationInfo`.
"""
"""
forward_relations
=
OrderedDict
()
forward_relations
=
OrderedDict
()
for
field
in
[
field
for
field
in
opts
.
fields
if
field
.
serialize
and
get_remote_field
(
field
)]:
for
field
in
[
field
for
field
in
opts
.
fields
if
field
.
serialize
and
get_remote_field
(
field
)
and
not
(
field
.
primary_key
and
field
.
one_to_one
)
# If the field is a OneToOneField and it's been marked as PK, then this
# is a multi-table inheritance auto created PK ('%_ptr').
]:
forward_relations
[
field
.
name
]
=
RelationInfo
(
forward_relations
[
field
.
name
]
=
RelationInfo
(
model_field
=
field
,
model_field
=
field
,
related_model
=
get_related_model
(
field
),
related_model
=
get_related_model
(
field
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment