From 45f5ba52b9bb5a5bdd3ba824feb9b3048d4a560d Mon Sep 17 00:00:00 2001 From: Aaron Detre Date: Mon, 19 May 2025 10:42:34 -0700 Subject: [PATCH 1/3] Add share issue type --- .../org/wise/portal/domain/general/contactwise/IssueType.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/wise/portal/domain/general/contactwise/IssueType.java b/src/main/java/org/wise/portal/domain/general/contactwise/IssueType.java index afe936c16a..20a8d9e816 100644 --- a/src/main/java/org/wise/portal/domain/general/contactwise/IssueType.java +++ b/src/main/java/org/wise/portal/domain/general/contactwise/IssueType.java @@ -32,7 +32,7 @@ public enum IssueType { TROUBLE_LOGGING_IN, NEED_HELP_USING_WISE, PROJECT_PROBLEMS, - STUDENT_MANAGEMENT, AUTHORING, FEEDBACK, OTHER; + STUDENT_MANAGEMENT, AUTHORING, SHARE, FEEDBACK, OTHER; private static Properties i18nProperties; From d680cc4efe90e559fbcbc6704b3925987b1b5108 Mon Sep 17 00:00:00 2001 From: Aaron Detre Date: Mon, 19 May 2025 23:58:07 -0700 Subject: [PATCH 2/3] Added SHARE to i18n.properties so that the issue type value can be retrieved --- src/main/resources/i18n/i18n.properties | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/resources/i18n/i18n.properties b/src/main/resources/i18n/i18n.properties index 75ca9e9e96..a12cdedd6f 100644 --- a/src/main/resources/i18n/i18n.properties +++ b/src/main/resources/i18n/i18n.properties @@ -693,6 +693,8 @@ contact.contactwisegeneral.STUDENT_MANAGEMENT=Student Management contact.contactwisegeneral.STUDENT_MANAGEMENT.description=The text for the issue type drop down option for Student Management contact.contactwisegeneral.AUTHORING=Need Help with Authoring contact.contactwisegeneral.AUTHORING.description=The text for the issue type drop down option for Need Help with Authoring +contact.contactwisegeneral.SHARE=Share Unit +contact.contactwisegeneral.SHARE.description=The text for the issue type drop down option for Share Unit contact.contactwisegeneral.FEEDBACK=Feedback to WISE contact.contactwisegeneral.FEEDBACK.description=The text for the issue type drop down option for Feedback to WISE contact.contactwisegeneral.OTHER=Other Problem @@ -734,6 +736,8 @@ contact.contactwiseproject.STUDENT_MANAGEMENT=Student Management contact.contactwiseproject.STUDENT_MANAGEMENT.description=The text for the issue type drop down option for Student Management contact.contactwiseproject.AUTHORING=Need Help with Authoring contact.contactwiseproject.AUTHORING.description=The text for the issue type drop down option for Need Help with Authoring +contact.contactwiseproject.SHARE=Share Unit +contact.contactwiseproject.SHARE.description=The text for the issue type drop down option for Share Unit contact.contactwiseproject.FEEDBACK=Feedback to WISE contact.contactwiseproject.FEEDBACK.description=The text for the issue type drop down option for Feedback to WISE contact.contactwiseproject.OTHER=Other Problem From 16d3bf506eb3947c26df41f28665f2fcefe4567a Mon Sep 17 00:00:00 2001 From: Aaron Detre Date: Tue, 20 May 2025 14:17:38 -0700 Subject: [PATCH 3/3] Change share to publish --- .../wise/portal/domain/general/contactwise/IssueType.java | 2 +- src/main/resources/i18n/i18n.properties | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/wise/portal/domain/general/contactwise/IssueType.java b/src/main/java/org/wise/portal/domain/general/contactwise/IssueType.java index 20a8d9e816..4f72161cc7 100644 --- a/src/main/java/org/wise/portal/domain/general/contactwise/IssueType.java +++ b/src/main/java/org/wise/portal/domain/general/contactwise/IssueType.java @@ -32,7 +32,7 @@ public enum IssueType { TROUBLE_LOGGING_IN, NEED_HELP_USING_WISE, PROJECT_PROBLEMS, - STUDENT_MANAGEMENT, AUTHORING, SHARE, FEEDBACK, OTHER; + STUDENT_MANAGEMENT, AUTHORING, PUBLISH, FEEDBACK, OTHER; private static Properties i18nProperties; diff --git a/src/main/resources/i18n/i18n.properties b/src/main/resources/i18n/i18n.properties index a12cdedd6f..92d0bd5d2f 100644 --- a/src/main/resources/i18n/i18n.properties +++ b/src/main/resources/i18n/i18n.properties @@ -693,8 +693,8 @@ contact.contactwisegeneral.STUDENT_MANAGEMENT=Student Management contact.contactwisegeneral.STUDENT_MANAGEMENT.description=The text for the issue type drop down option for Student Management contact.contactwisegeneral.AUTHORING=Need Help with Authoring contact.contactwisegeneral.AUTHORING.description=The text for the issue type drop down option for Need Help with Authoring -contact.contactwisegeneral.SHARE=Share Unit -contact.contactwisegeneral.SHARE.description=The text for the issue type drop down option for Share Unit +contact.contactwisegeneral.PUBLISH=Publish Unit to the WISE Community +contact.contactwisegeneral.PUBLISH.description=The text for the issue type drop down option for Publish Unit to the WISE Community contact.contactwisegeneral.FEEDBACK=Feedback to WISE contact.contactwisegeneral.FEEDBACK.description=The text for the issue type drop down option for Feedback to WISE contact.contactwisegeneral.OTHER=Other Problem @@ -736,8 +736,8 @@ contact.contactwiseproject.STUDENT_MANAGEMENT=Student Management contact.contactwiseproject.STUDENT_MANAGEMENT.description=The text for the issue type drop down option for Student Management contact.contactwiseproject.AUTHORING=Need Help with Authoring contact.contactwiseproject.AUTHORING.description=The text for the issue type drop down option for Need Help with Authoring -contact.contactwiseproject.SHARE=Share Unit -contact.contactwiseproject.SHARE.description=The text for the issue type drop down option for Share Unit +contact.contactwiseproject.PUBLISH=Publish Unit to the WISE Community +contact.contactwiseproject.PUBLISH.description=The text for the issue type drop down option for Publish Unit to the WISE Community contact.contactwiseproject.FEEDBACK=Feedback to WISE contact.contactwiseproject.FEEDBACK.description=The text for the issue type drop down option for Feedback to WISE contact.contactwiseproject.OTHER=Other Problem