From 0338c17a9dd9e15af875bba6e19351c113df80d5 Mon Sep 17 00:00:00 2001 From: Lloyd Wheeler Date: Tue, 28 Nov 2017 09:30:57 -0800 Subject: [PATCH] StudentSupportForm: Restructuring service layer #1450 --- ...dentSupportCallFormCtrl.js => StudentSupportCallFormCtrl.js} | 0 .../studentPreferenceSelector/studentPreferenceSelector.html} | 0 .../studentPreferenceSelector}/studentPreferenceSelector.js | 2 +- ...pportStaffFormActionCreators.js => studentSupportActions.js} | 0 ...upportStaffFormStateService.js => studentSupportReducers.js} | 0 .../{supportStaffFormService.js => studentSupportService.js} | 0 6 files changed, 1 insertion(+), 1 deletion(-) rename app/instructionalSupport/studentSupportCallForm/{controllers/studentSupportCallFormCtrl.js => StudentSupportCallFormCtrl.js} (100%) rename app/instructionalSupport/studentSupportCallForm/{templates/StudentPreferenceSelector.html => directives/studentPreferences/studentPreferenceSelector/studentPreferenceSelector.html} (100%) rename app/instructionalSupport/studentSupportCallForm/directives/{ => studentPreferences/studentPreferenceSelector}/studentPreferenceSelector.js (88%) rename app/instructionalSupport/studentSupportCallForm/services/{supportStaffFormActionCreators.js => studentSupportActions.js} (100%) rename app/instructionalSupport/studentSupportCallForm/services/{supportStaffFormStateService.js => studentSupportReducers.js} (100%) rename app/instructionalSupport/studentSupportCallForm/services/{supportStaffFormService.js => studentSupportService.js} (100%) diff --git a/app/instructionalSupport/studentSupportCallForm/controllers/studentSupportCallFormCtrl.js b/app/instructionalSupport/studentSupportCallForm/StudentSupportCallFormCtrl.js similarity index 100% rename from app/instructionalSupport/studentSupportCallForm/controllers/studentSupportCallFormCtrl.js rename to app/instructionalSupport/studentSupportCallForm/StudentSupportCallFormCtrl.js diff --git a/app/instructionalSupport/studentSupportCallForm/templates/StudentPreferenceSelector.html b/app/instructionalSupport/studentSupportCallForm/directives/studentPreferences/studentPreferenceSelector/studentPreferenceSelector.html similarity index 100% rename from app/instructionalSupport/studentSupportCallForm/templates/StudentPreferenceSelector.html rename to app/instructionalSupport/studentSupportCallForm/directives/studentPreferences/studentPreferenceSelector/studentPreferenceSelector.html diff --git a/app/instructionalSupport/studentSupportCallForm/directives/studentPreferenceSelector.js b/app/instructionalSupport/studentSupportCallForm/directives/studentPreferences/studentPreferenceSelector/studentPreferenceSelector.js similarity index 88% rename from app/instructionalSupport/studentSupportCallForm/directives/studentPreferenceSelector.js rename to app/instructionalSupport/studentSupportCallForm/directives/studentPreferences/studentPreferenceSelector/studentPreferenceSelector.js index 834a5b3c8..8aa7b1926 100644 --- a/app/instructionalSupport/studentSupportCallForm/directives/studentPreferenceSelector.js +++ b/app/instructionalSupport/studentSupportCallForm/directives/studentPreferences/studentPreferenceSelector/studentPreferenceSelector.js @@ -4,7 +4,7 @@ instructionalSupportApp.directive("studentPreferenceSelector", this.studentPreferenceSelector = function ($rootScope, instructionalSupportAssignmentActionCreators) { return { restrict: 'E', - templateUrl: 'StudentPreferenceSelector.html', + templateUrl: 'studentPreferenceSelector.html', replace: true, scope: false, link: function (scope, element, attrs) { diff --git a/app/instructionalSupport/studentSupportCallForm/services/supportStaffFormActionCreators.js b/app/instructionalSupport/studentSupportCallForm/services/studentSupportActions.js similarity index 100% rename from app/instructionalSupport/studentSupportCallForm/services/supportStaffFormActionCreators.js rename to app/instructionalSupport/studentSupportCallForm/services/studentSupportActions.js diff --git a/app/instructionalSupport/studentSupportCallForm/services/supportStaffFormStateService.js b/app/instructionalSupport/studentSupportCallForm/services/studentSupportReducers.js similarity index 100% rename from app/instructionalSupport/studentSupportCallForm/services/supportStaffFormStateService.js rename to app/instructionalSupport/studentSupportCallForm/services/studentSupportReducers.js diff --git a/app/instructionalSupport/studentSupportCallForm/services/supportStaffFormService.js b/app/instructionalSupport/studentSupportCallForm/services/studentSupportService.js similarity index 100% rename from app/instructionalSupport/studentSupportCallForm/services/supportStaffFormService.js rename to app/instructionalSupport/studentSupportCallForm/services/studentSupportService.js