Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
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
edx-platform
Commits
18822bdb
Commit
18822bdb
authored
Oct 05, 2014
by
John Eskew
Committed by
Don Mitchell
Oct 06, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Wrap course info and dashboard in bulk ops wrapper to reduce Mongo calls.
parent
0ed4ee32
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletions
+4
-1
common/djangoapps/student/views.py
+3
-1
lms/djangoapps/courseware/views.py
+1
-0
No files found.
common/djangoapps/student/views.py
View file @
18822bdb
...
@@ -246,7 +246,9 @@ def get_course_enrollment_pairs(user, course_org_filter, org_filter_out_set):
...
@@ -246,7 +246,9 @@ def get_course_enrollment_pairs(user, course_org_filter, org_filter_out_set):
a student's dashboard.
a student's dashboard.
"""
"""
for
enrollment
in
CourseEnrollment
.
enrollments_for_user
(
user
):
for
enrollment
in
CourseEnrollment
.
enrollments_for_user
(
user
):
course
=
modulestore
()
.
get_course
(
enrollment
.
course_id
)
store
=
modulestore
()
with
store
.
bulk_operations
(
enrollment
.
course_id
):
course
=
store
.
get_course
(
enrollment
.
course_id
)
if
course
and
not
isinstance
(
course
,
ErrorDescriptor
):
if
course
and
not
isinstance
(
course
,
ErrorDescriptor
):
# if we are in a Microsite, then filter out anything that is not
# if we are in a Microsite, then filter out anything that is not
...
...
lms/djangoapps/courseware/views.py
View file @
18822bdb
...
@@ -559,6 +559,7 @@ def course_info(request, course_id):
...
@@ -559,6 +559,7 @@ def course_info(request, course_id):
course_key
=
SlashSeparatedCourseKey
.
from_deprecated_string
(
course_id
)
course_key
=
SlashSeparatedCourseKey
.
from_deprecated_string
(
course_id
)
with
modulestore
()
.
bulk_operations
(
course_key
):
course
=
get_course_with_access
(
request
.
user
,
'load'
,
course_key
)
course
=
get_course_with_access
(
request
.
user
,
'load'
,
course_key
)
staff_access
=
has_access
(
request
.
user
,
'staff'
,
course
)
staff_access
=
has_access
(
request
.
user
,
'staff'
,
course
)
masq
=
setup_masquerade
(
request
,
staff_access
)
# allow staff to toggle masquerade on info page
masq
=
setup_masquerade
(
request
,
staff_access
)
# allow staff to toggle masquerade on info page
...
...
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