Commit e082e3cd7db94e90969b1c32f097544788bace24
1 parent
d3eb6b31
file is moved wrong place
Showing
4 changed files
with
32 additions
and
59 deletions
.gitignore
... | ... | @@ -38,3 +38,5 @@ $tf*/ |
38 | 38 | 400-SOURCECODE/AIAHTML5.Web/index.html.orig |
39 | 39 | 400-SOURCECODE/AIAHTML5.API/bin/AIAHTML5.API.dll |
40 | 40 | 400-SOURCECODE/AIAHTML5.API/bin/AIAHTML5.API.pdb |
41 | + | |
42 | +400-SOURCECODE/AIAHTML5.Web/app/views/da/da-view.html.orig | |
41 | 43 | \ No newline at end of file | ... | ... |
400-SOURCECODE/AIAHTML5.API/AIAHTML5.API.csproj
... | ... | @@ -106,7 +106,7 @@ |
106 | 106 | </ItemGroup> |
107 | 107 | <ItemGroup> |
108 | 108 | <Compile Include="App_Start\WebApiConfig.cs" /> |
109 | - <Compile Include="content\AIAConstants.cs" /> | |
109 | + <Compile Include="Constants\AIAConstants.cs" /> | |
110 | 110 | <Compile Include="Controllers\AdminAccessController.cs" /> |
111 | 111 | <Compile Include="Controllers\AuthenticateController.cs" /> |
112 | 112 | <Compile Include="Controllers\ForgotUserController.cs" /> |
... | ... | @@ -144,7 +144,6 @@ |
144 | 144 | </ItemGroup> |
145 | 145 | <ItemGroup> |
146 | 146 | <Folder Include="App_Data\" /> |
147 | - <Folder Include="Constants\" /> | |
148 | 147 | </ItemGroup> |
149 | 148 | <PropertyGroup> |
150 | 149 | <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion> | ... | ... |
400-SOURCECODE/AIAHTML5.API/Constants/AIAConstants.cs
1 | -using System; | |
2 | -using System.Collections.Generic; | |
3 | -using System.Linq; | |
4 | -using System.Web; | |
5 | - | |
6 | -namespace AIAHTML5.API.Constants | |
7 | -{ | |
8 | - public class AIAConstants | |
9 | - { | |
10 | - public const string ERROR_IN_FECTHING_DETAILS = "Error in fecthing details."; | |
11 | - public const string USER_NOT_FOUND = "User not found."; | |
12 | - public const string MAIL_NOT_SENT = "Mail not sent."; | |
13 | - public const string MAIL_SENT = "Mail sent."; | |
14 | - | |
15 | - public const string KEY_ID = "id"; | |
16 | - public const string KEY_TITLE = "title"; | |
17 | - public const string KEY_NAME = "name"; | |
18 | - public const string KEY_SLUG = "slug"; | |
19 | - | |
20 | - public const string PASSWORD_UPDATE_SUCCESS = "Password updated successfully"; | |
21 | - public const string PASSWORD_UPDATE_FAILED = "Password update failed"; | |
22 | - | |
23 | - public const string INVALID_USER = "Invalid UserID"; | |
24 | - | |
25 | - public const string LICENSE_TERM_CONDITION_UPDATE_SUCCESS = "License Term Accepted field updated successfully."; | |
26 | - public const string LICENSE_TERM_CONDITION_UPDATE_FAILED = "License Term Accepted field update failed."; | |
27 | - } | |
1 | +using System; | |
2 | +using System.Collections.Generic; | |
3 | +using System.Linq; | |
4 | +using System.Web; | |
5 | + | |
6 | +namespace AIAHTML5.API.Constants | |
7 | +{ | |
8 | + public class AIAConstants | |
9 | + { | |
10 | + public const string ERROR_IN_FECTHING_DETAILS = "Error in fecthing details."; | |
11 | + public const string USER_NOT_FOUND = "User not found."; | |
12 | + public const string MAIL_NOT_SENT = "Mail not sent."; | |
13 | + public const string MAIL_SENT = "Mail sent."; | |
14 | + | |
15 | + public const string KEY_ID = "id"; | |
16 | + public const string KEY_TITLE = "title"; | |
17 | + public const string KEY_NAME = "name"; | |
18 | + public const string KEY_SLUG = "slug"; | |
19 | + | |
20 | + public const string PASSWORD_UPDATE_SUCCESS = "Password updated successfully"; | |
21 | + public const string PASSWORD_UPDATE_FAILED = "Password update failed"; | |
22 | + | |
23 | + public const string INVALID_USER = "Invalid UserID"; | |
24 | + | |
25 | + public const string LICENSE_TERM_CONDITION_UPDATE_SUCCESS = "License Term Accepted field updated successfully."; | |
26 | + public const string LICENSE_TERM_CONDITION_UPDATE_FAILED = "License Term Accepted field update failed."; | |
27 | + | |
28 | + public const string KEY_CONTENT = "content"; | |
29 | + } | |
28 | 30 | } |
29 | 31 | \ No newline at end of file | ... | ... |
400-SOURCECODE/AIAHTML5.API/content/AIAConstants.cs deleted
1 | -using System; | |
2 | -using System.Collections.Generic; | |
3 | -using System.Linq; | |
4 | -using System.Web; | |
5 | - | |
6 | -namespace AIAHTML5.API.Constants | |
7 | -{ | |
8 | - public class AIAConstants | |
9 | - { | |
10 | - public const string ERROR_IN_FECTHING_DETAILS = "Error in fecthing details."; | |
11 | - public const string USER_NOT_FOUND = "User not found."; | |
12 | - public const string MAIL_NOT_SENT = "Mail not sent."; | |
13 | - public const string MAIL_SENT = "Mail sent."; | |
14 | - | |
15 | - public const string KEY_ID = "id"; | |
16 | - public const string KEY_TITLE = "title"; | |
17 | - public const string KEY_NAME = "name"; | |
18 | - public const string KEY_SLUG = "slug"; | |
19 | - | |
20 | - public const string PASSWORD_UPDATE_SUCCESS = "Password updated successfully"; | |
21 | - public const string PASSWORD_UPDATE_FAILED = "Password update failed"; | |
22 | - | |
23 | - public const string INVALID_USER = "Invalid UserID"; | |
24 | - | |
25 | - public const string LICENSE_TERM_CONDITION_UPDATE_SUCCESS = "License Term Accepted field updated successfully."; | |
26 | - public const string LICENSE_TERM_CONDITION_UPDATE_FAILED = "License Term Accepted field update failed."; | |
27 | - | |
28 | - public const string KEY_CONTENT = "content"; | |
29 | - } | |
30 | -} | |
31 | 0 | \ No newline at end of file |