rename all variants of naming that hold an AyaType value to "aType" (parameter) / "AType" (not parameter) everywhere front and back; "ayType", "objectType", "oType" all are used in various areas
This commit is contained in:
@@ -336,7 +336,7 @@ namespace AyaNova.Api.Controllers
|
||||
|
||||
|
||||
bool badRequest = false;
|
||||
string UploadObjectType = string.Empty;
|
||||
string UploadAType = string.Empty;
|
||||
string UploadObjectId = string.Empty;
|
||||
string errorMessage = string.Empty;
|
||||
string Notes = string.Empty;
|
||||
@@ -371,8 +371,8 @@ namespace AyaNova.Api.Controllers
|
||||
}
|
||||
if (!badRequest)
|
||||
{
|
||||
if (uploadFormData.FormFieldData.ContainsKey("ObjectType"))
|
||||
UploadObjectType = uploadFormData.FormFieldData["ObjectType"].ToString();
|
||||
if (uploadFormData.FormFieldData.ContainsKey("AType"))
|
||||
UploadAType = uploadFormData.FormFieldData["AType"].ToString();
|
||||
if (uploadFormData.FormFieldData.ContainsKey("ObjectId"))
|
||||
UploadObjectId = uploadFormData.FormFieldData["ObjectId"].ToString();
|
||||
if (uploadFormData.FormFieldData.ContainsKey("Notes"))
|
||||
|
||||
Reference in New Issue
Block a user