Make the permission labels shorter

They were feeling a bit heavy on the _Team members_ page. We can remove
some words without losing any meaning.
This commit is contained in:
Chris Hill-Scott
2018-08-08 14:23:24 +01:00
parent 347912876c
commit 61507fda8f
2 changed files with 45 additions and 45 deletions

View File

@@ -21,10 +21,10 @@ roles_by_permission = {
all_permissions = set(roles_by_permission.values())
permissions = (
('view_activity', 'See dashboard and reports'),
('send_messages', 'Send messages using templates'),
('view_activity', 'See dashboard'),
('send_messages', 'Send messages'),
('manage_templates', 'Add and edit templates'),
('manage_service', 'Manage settings, team members and usage'),
('manage_service', 'Manage settings, team and usage'),
('manage_api_keys', 'Manage API integration'),
)