Commit 1b71fd76f0e663c34d109f28d65577b47033854c

Authored by Amrita Vishnoi
1 parent 7bbf5377

Added controller in solution

400-SOURCECODE/AIAHTML5.API/AIAHTML5.API.csproj
... ... @@ -120,6 +120,7 @@
120 120 <Compile Include="Constants\ErrorHelper.cs" />
121 121 <Compile Include="Controllers\AdminAccessController.cs" />
122 122 <Compile Include="Controllers\AuthenticateController.cs" />
  123 + <Compile Include="Controllers\ConfigurationController.cs" />
123 124 <Compile Include="Controllers\ForgotUserController.cs" />
124 125 <Compile Include="Controllers\LabExerciseController.cs" />
125 126 <Compile Include="Controllers\LicenseTermConditionController.cs" />
... ...
400-SOURCECODE/AIAHTML5.Web/app/services/AuthenticationService.js
... ... @@ -117,7 +117,8 @@
117 117 url: 'API/api/Configuration/GetConfigurationvalues'
118 118 }).success(function (data, status, headers, config)
119 119 {
120   - console.log('success' + data);
  120 + console.log('success' + data);
  121 +
121 122 deferred.resolve(data);
122 123 }).error(function (data, status, headers, config)
123 124 {
... ...