Index: lams_admin/conf/language/lams/ApplicationResources.properties =================================================================== diff -u -r9e39ffbdbc7ea7ceb482f6ab9c0c2a136e959b6c -re08ab2e3467e4d633a0acff995d8e513d9ef9f5f --- lams_admin/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 9e39ffbdbc7ea7ceb482f6ab9c0c2a136e959b6c) +++ lams_admin/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision e08ab2e3467e4d633a0acff995d8e513d9ef9f5f) @@ -666,5 +666,10 @@ admin.workflow.automation.module.management =Module and blueprint management workflow.automation.title =Workflow Automation +config.header.workflow.automation = Workflow Automation +config.wa.enable = Enable Workflow Automation +config.wa.api.url = API URL +config.wa.token.client.id = Access token client ID +config.wa.token.client.secret = Access token client secret #======= End labels: Exported 627 labels for en AU ===== Index: lams_common/src/java/org/lamsfoundation/lams/util/ConfigurationKeys.java =================================================================== diff -u -r9091ed8c9bae9a48f88622c0c5031af2a39772dc -re08ab2e3467e4d633a0acff995d8e513d9ef9f5f --- lams_common/src/java/org/lamsfoundation/lams/util/ConfigurationKeys.java (.../ConfigurationKeys.java) (revision 9091ed8c9bae9a48f88622c0c5031af2a39772dc) +++ lams_common/src/java/org/lamsfoundation/lams/util/ConfigurationKeys.java (.../ConfigurationKeys.java) (revision e08ab2e3467e4d633a0acff995d8e513d9ef9f5f) @@ -117,9 +117,9 @@ public static String ALLOW_EDIT_ON_FLY = "AllowLiveEdit"; public static String ALLOW_KUMALIVE = "AllowKumalive"; - + public static String ENABLE_COLLAPSING_SUBCOURSES = "EnableCollapsingSubcourses"; - + public static String DISPLAY_PORTRAIT = "DisplayPortrait"; public static String ENABLE_PORTRAIT_EDITING = "EnablePortraitEditing"; @@ -249,7 +249,7 @@ public static String USER_VALIDATION_REQUIRED_FIRST_LAST_NAME = "UserValidationFirstLastName"; public static String USER_VALIDATION_REQUIRED_EMAIL = "UserValidationEmail"; - + public static String RESTRICTED_DISPLAYING_OF_USER_NAMES_IN_GROUPS = "RestrictedGroupUserNames"; // LDEV-2747 @@ -294,7 +294,7 @@ public static String ANTIVIRUS_ENABLE = "AntivirusEnable"; public static String ANTIVIRUS_HOST = "AntivirusHost"; public static String ANTIVIRUS_PORT = "AntivirusPort"; - + // LDEV-4819 public static String LEARNING_OUTCOME_QUICK_ADD_ENABLE = "LearningOutcomeQuickAddEnable"; @@ -307,7 +307,10 @@ public static String QB_STATS_MIN_PARTICIPANTS = "QbStatsMinParticipants"; public static String QB_STATS_GROUP_SIZE = "QbStatsGroupSize"; public static String QB_MERGE_ENABLE = "QbMergeEnable"; - + // LKC-213 LKC Workflow Automation public static String WORKFLOW_AUTOMATION_ENABLE = "WorkflowAutomationEnable"; + public static String WORKFLOW_AUTOMATION_API_URL = "WorkflowAutomationApiURL"; + public static String WORKFLOW_AUTOMATION_CLIENT_ID = "WorkflowAutomationClientID"; + public static String WORKFLOW_AUTOMATION_CLIENT_SECRET = "WorkflowAutomationClientSecret"; }