Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
feat: expose new offer limit email task in api namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
iloveagent57 committed Jul 5, 2022
1 parent fe4928d commit 822194d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions ecommerce_worker/email/v1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

# Celery tasks
from .tasks import (
send_api_triggered_offer_usage_email,
send_code_assignment_nudge_email,
send_offer_assignment_email,
send_offer_update_email,
Expand Down
1 change: 1 addition & 0 deletions ecommerce_worker/email/v1/tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ def test_public_api(self):
"""
assert [k for k, v in getmembers(api) if not k.startswith('_')] == [
'did_email_bounce',
'send_api_triggered_offer_usage_email',
'send_code_assignment_nudge_email',
'send_offer_assignment_email',
'send_offer_update_email',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def is_requirement(line):

setup(
name='edx-ecommerce-worker',
version='3.3.0',
version='3.3.1',
description='Celery tasks supporting the operations of edX\'s ecommerce service',
long_description=long_description,
classifiers=[
Expand Down

0 comments on commit 822194d

Please sign in to comment.