forked from MDCPS/DamageAssessment_Backend
		
	added IsActive flag in doculinks request
This commit is contained in:
		| @ -73,7 +73,8 @@ namespace DamageAssesment.Api.DocuLinks.Providers | ||||
|                 } | ||||
|                 Documents=new Models.Doculink (){ linkTypeId = documentInfo.linkTypeId, | ||||
|                     documentsTranslations = documentInfo.documentsTranslations,doclinksAttachments=attachments, | ||||
|                     IsDeleted=false,CustomOrder=documentInfo.CustomOrder, IsActive =true}; | ||||
|                     IsDeleted=false,CustomOrder=documentInfo.CustomOrder, IsActive =documentInfo.IsActive | ||||
|                 }; | ||||
|              | ||||
|                 return Documents; | ||||
|             } | ||||
| @ -116,7 +117,7 @@ namespace DamageAssesment.Api.DocuLinks.Providers | ||||
|                     Id = documentInfo.Id, | ||||
|                     linkTypeId = documentInfo.linkTypeId, | ||||
|                     documentsTranslations=documentInfo.documentsTranslations, | ||||
|                     IsActive = true, | ||||
|                     IsActive = documentInfo.IsActive, | ||||
|                     IsDeleted=false, | ||||
|                     CustomOrder = documentInfo.CustomOrder, | ||||
|                     doclinksAttachments = attachments | ||||
|  | ||||
		Reference in New Issue
	
	Block a user