mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-16 20:49:00 -04:00
Admin app settings to save reply to email address for service.
This commit is contained in:
@@ -62,7 +62,8 @@ class ServiceAPIClient(NotificationsAPIClient):
|
||||
message_limit,
|
||||
restricted,
|
||||
users,
|
||||
email_from):
|
||||
email_from,
|
||||
reply_to_email_address=None):
|
||||
"""
|
||||
Update a service.
|
||||
"""
|
||||
@@ -73,7 +74,8 @@ class ServiceAPIClient(NotificationsAPIClient):
|
||||
"message_limit": message_limit,
|
||||
"restricted": restricted,
|
||||
"users": users,
|
||||
"email_from": email_from
|
||||
"email_from": email_from,
|
||||
"reply_to_email_address": reply_to_email_address
|
||||
}
|
||||
_attach_current_user(data)
|
||||
endpoint = "/service/{0}".format(service_id)
|
||||
|
||||
Reference in New Issue
Block a user