From 88b3f3e4158987a332536ec080f81630c3126cbb Mon Sep 17 00:00:00 2001
From: Lily Yan <l26yan@uwaterloo.ca>
Date: Thu, 16 Feb 2023 11:54:38 -0500
Subject: [PATCH] ISTWCMS-6076 Swap the order of the content author and content
 editor roles for the new site

---
 src/UwRoles/UwRoles.php | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/UwRoles/UwRoles.php b/src/UwRoles/UwRoles.php
index 74d07924..d233e0ce 100644
--- a/src/UwRoles/UwRoles.php
+++ b/src/UwRoles/UwRoles.php
@@ -40,8 +40,8 @@ class UwRoles {
     return [
       'uw_role_site_owner',
       'uw_role_site_manager',
-      'uw_role_content_author',
       'uw_role_content_editor',
+      'uw_role_content_author',
       'uw_role_form_editor',
       'uw_role_form_results_access',
       'uw_role_private_content_viewer',
@@ -98,12 +98,12 @@ class UwRoles {
       case 'uw_role_site_manager':
         return 'Site manager';
 
-      case 'uw_role_content_author':
-        return 'Content author';
-
       case 'uw_role_content_editor':
         return 'Content editor';
 
+      case 'uw_role_content_author':
+        return 'Content author';
+
       case 'uw_role_form_editor':
         return 'Form editor';
 
-- 
GitLab