mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-20 14:29:51 -04:00
Remove choose_postage feature flag so everyone can choose postage
This commit is contained in:
@@ -829,7 +829,7 @@ def set_template_sender(service_id, template_id):
|
||||
@user_has_permissions('manage_templates')
|
||||
def edit_template_postage(service_id, template_id):
|
||||
template = service_api_client.get_service_template(service_id, template_id)['data']
|
||||
if template["template_type"] != "letter" or not current_service.has_permission("choose_postage"):
|
||||
if template["template_type"] != "letter":
|
||||
abort(404)
|
||||
form = LetterTemplatePostageForm(**template)
|
||||
if form.validate_on_submit():
|
||||
|
||||
Reference in New Issue
Block a user