Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
3e0bd55c
Commit
3e0bd55c
authored
8 years ago
by
Robert Raposa
Committed by
GitHub
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #13445 from edx/robrap/TNL-5240
TNL-5240: Cache comment thread.
parents
4b9ab319
43590510
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lms/lib/comment_client/comment.py
+7
-1
7 additions, 1 deletion
lms/lib/comment_client/comment.py
with
7 additions
and
1 deletion
lms/lib/comment_client/comment.py
+
7
−
1
View file @
3e0bd55c
...
...
@@ -27,9 +27,15 @@ class Comment(models.Model):
base_url
=
"
{prefix}/comments
"
.
format
(
prefix
=
settings
.
PREFIX
)
type
=
'
comment
'
def
__init__
(
self
,
*
args
,
**
kwargs
):
super
(
Comment
,
self
).
__init__
(
*
args
,
**
kwargs
)
self
.
_cached_thread
=
None
@property
def
thread
(
self
):
return
Thread
(
id
=
self
.
thread_id
,
type
=
'
thread
'
)
if
not
self
.
_cached_thread
:
self
.
_cached_thread
=
Thread
(
id
=
self
.
thread_id
,
type
=
'
thread
'
)
return
self
.
_cached_thread
@property
def
context
(
self
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment