Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hypha
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
ots
hypha
Commits
b19b8407
Commit
b19b8407
authored
6 years ago
by
Todd Dembrey
Browse files
Options
Downloads
Patches
Plain Diff
Add hook for comments
parent
004cc4ad
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
opentech/apply/activity/messaging.py
+1
-0
1 addition, 0 deletions
opentech/apply/activity/messaging.py
opentech/apply/activity/views.py
+7
-0
7 additions, 0 deletions
opentech/apply/activity/views.py
with
8 additions
and
0 deletions
opentech/apply/activity/messaging.py
+
1
−
0
View file @
b19b8407
...
@@ -12,6 +12,7 @@ class MESSAGES(Enum):
...
@@ -12,6 +12,7 @@ class MESSAGES(Enum):
DETERMINATION_OUTCOME
=
'
determination_outcome
'
DETERMINATION_OUTCOME
=
'
determination_outcome
'
INVITED_TO_PROPOSAL
=
'
invited_to_proposal
'
INVITED_TO_PROPOSAL
=
'
invited_to_proposal
'
REVIEWERS_UPDATED
=
'
reviewers_updated
'
REVIEWERS_UPDATED
=
'
reviewers_updated
'
COMMENT
=
'
comment
'
class
MessageAdapter
:
class
MessageAdapter
:
...
...
This diff is collapsed.
Click to expand it.
opentech/apply/activity/views.py
+
7
−
0
View file @
b19b8407
...
@@ -3,6 +3,7 @@ from django.views.generic import CreateView
...
@@ -3,6 +3,7 @@ from django.views.generic import CreateView
from
opentech.apply.utils.views
import
DelegatedViewMixin
from
opentech.apply.utils.views
import
DelegatedViewMixin
from
.forms
import
CommentForm
from
.forms
import
CommentForm
from
.messaging
import
messenger
,
MESSAGES
from
.models
import
Activity
,
COMMENT
from
.models
import
Activity
,
COMMENT
...
@@ -37,6 +38,12 @@ class CommentFormView(DelegatedViewMixin, CreateView):
...
@@ -37,6 +38,12 @@ class CommentFormView(DelegatedViewMixin, CreateView):
form
.
instance
.
user
=
self
.
request
.
user
form
.
instance
.
user
=
self
.
request
.
user
form
.
instance
.
submission
=
self
.
kwargs
[
'
submission
'
]
form
.
instance
.
submission
=
self
.
kwargs
[
'
submission
'
]
form
.
instance
.
type
=
COMMENT
form
.
instance
.
type
=
COMMENT
messenger
(
MESSAGES
.
COMMENT
,
user
=
self
.
request
.
user
,
submission
=
self
.
submission
,
comment
=
form
.
instance
,
)
return
super
().
form_valid
(
form
)
return
super
().
form_valid
(
form
)
def
get_success_url
(
self
):
def
get_success_url
(
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