Skip to content

Commit f6caf04

Browse files
committed
v3.2.1 - forgot to add mark_unsent to actions list
1 parent b731d1f commit f6caf04

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

mailqueue/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
VERSION = '3.2.0'
1+
VERSION = '3.2.1'
22

33
default_app_config = 'mailqueue.apps.MailQueueConfig'

mailqueue/admin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class AttachmentInline(admin.TabularInline):
1313
class MailerAdmin(admin.ModelAdmin):
1414
list_display = ('created', 'subject', 'to_address', 'app', 'sent', 'last_attempt', 'reply_to')
1515
search_fields = ['to_address', 'subject', 'app', 'cc_address', 'bcc_address', 'reply_to']
16-
actions = ['send_failed', 'resend_emails']
16+
actions = ['send_failed', 'resend_emails', 'mark_unsent']
1717
inlines = [AttachmentInline]
1818
date_hierarchy = "created"
1919

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@
3333
packages=find_packages(),
3434
include_package_data=True,
3535
zip_safe=False,
36-
)
36+
)

0 commit comments

Comments
 (0)