mirror of
				https://github.com/juspay/hyperswitch.git
				synced 2025-10-31 18:17:13 +08:00 
			
		
		
		
	refactor(business_profile): change id for business profile (#5748)
This commit is contained in:
		| @ -284,15 +284,15 @@ pub async fn get_authentication_connector_data( | ||||
|         .first() | ||||
|         .ok_or(errors::ApiErrorResponse::UnprocessableEntity { | ||||
|             message: format!( | ||||
|                 "No authentication_connector found for profile_id {}", | ||||
|                 business_profile.profile_id.get_string_repr() | ||||
|                 "No authentication_connector found for profile_id {:?}", | ||||
|                 business_profile.get_id() | ||||
|             ), | ||||
|         }) | ||||
|         .attach_printable( | ||||
|             "No authentication_connector found from merchant_account.authentication_details", | ||||
|         )? | ||||
|         .to_owned(); | ||||
|     let profile_id = &business_profile.profile_id; | ||||
|     let profile_id = business_profile.get_id(); | ||||
|     let authentication_connector_mca = payments::helpers::get_merchant_connector_account( | ||||
|         state, | ||||
|         &business_profile.merchant_id, | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Narayan Bhat
					Narayan Bhat