Remove the upload_letters permission

Every service has it now, and we haven’t had any services ask to toggle
it off again.
This commit is contained in:
Chris Hill-Scott
2020-10-20 11:04:49 +01:00
parent fcd34ef989
commit f549168b5e
6 changed files with 3 additions and 9 deletions

View File

@@ -67,7 +67,6 @@ from app.utils import (
PLATFORM_ADMIN_SERVICE_PERMISSIONS = OrderedDict([
('inbound_sms', {'title': 'Receive inbound SMS', 'requires': 'sms', 'endpoint': '.service_set_inbound_number'}),
('email_auth', {'title': 'Email authentication'}),
('upload_letters', {'title': 'Uploading letters', 'requires': 'letter'}),
('international_letters', {'title': 'Send international letters', 'requires': 'letter'}),
('broadcast', {'title': 'Send cell broadcasts'}),
])