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
ada86232
Commit
ada86232
authored
7 years ago
by
Douglas Hall
Browse files
Options
Downloads
Patches
Plain Diff
ENT-798 Update SailThru user with enterprise name on EnterpriseCustomerUser creation.
parent
39757aa5
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
openedx/features/enterprise_support/signals.py
+9
-3
9 additions, 3 deletions
openedx/features/enterprise_support/signals.py
openedx/features/enterprise_support/tests/test_signals.py
+7
-1
7 additions, 1 deletion
openedx/features/enterprise_support/tests/test_signals.py
with
16 additions
and
4 deletions
openedx/features/enterprise_support/signals.py
+
9
−
3
View file @
ada86232
...
...
@@ -11,11 +11,17 @@ from email_marketing.tasks import update_user # pylint: disable=import-error
@receiver
(
post_save
,
sender
=
EnterpriseCustomerUser
)
def
update_email_marketing_user_with_enterprise_
flag
(
sender
,
instance
,
**
kwargs
):
# pylint: disable=unused-argument, invalid-name
def
update_email_marketing_user_with_enterprise_
vars
(
sender
,
instance
,
**
kwargs
):
# pylint: disable=unused-argument, invalid-name
"""
Enabl
e the
is_enterprise_learner flag in SailThru
vars.
Updat
e the
SailThru user with enterprise-related
vars.
"""
user
=
User
.
objects
.
get
(
id
=
instance
.
user_id
)
# perform update asynchronously
update_user
.
delay
(
sailthru_vars
=
{
'
is_enterprise_learner
'
:
True
},
email
=
user
.
email
)
update_user
.
delay
(
sailthru_vars
=
{
'
is_enterprise_learner
'
:
True
,
'
enterprise_name
'
:
instance
.
enterprise_customer
.
name
,
},
email
=
user
.
email
)
This diff is collapsed.
Click to expand it.
openedx/features/enterprise_support/tests/test_signals.py
+
7
−
1
View file @
ada86232
...
...
@@ -34,4 +34,10 @@ class EnterpriseSupportSignals(TestCase):
user_id
=
self
.
user
.
id
,
enterprise_customer
=
enterprise_customer
)
self
.
assertTrue
(
mock_update_user
.
called
)
mock_update_user
.
assert_called_with
(
sailthru_vars
=
{
'
is_enterprise_learner
'
:
True
,
'
enterprise_name
'
:
enterprise_customer
.
name
,
},
email
=
self
.
user
.
email
)
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