@@ -160,7 +160,8 @@ private let allRoutes: [String: (RouteParamsDecoded) -> Navigation?] = [
160160  " /projects/:creator_param/:project_param/surveys/:survey_param/edit " :  pledgeManagerWebview, 
161161  " /projects/:creator_param/:project_param/surveys/:survey_param/edit_address " :  pledgeManagerWebview, 
162162  " /settings/:notification_param/:enabled_param " :  settingsNotifications, 
163-   " /users/:user_param/surveys/:survey_response_id " :  userSurvey
163+   " /users/:user_param/surveys/:survey_response_id " :  userSurvey, 
164+   " /projects/:creator_param/:project_param/order_edits/:order_edit_id/checkout " :  pledgeManagerWebview
164165] 
165166
166167private  let  deepLinkRoutes :  [ String :  ( RouteParamsDecoded )  ->  Navigation ? ]  =  allRoutes. restrict ( 
@@ -186,7 +187,8 @@ private let deepLinkRoutes: [String: (RouteParamsDecoded) -> Navigation?] = allR
186187    " /projects/:creator_param/:project_param/surveys/:survey_param/edit_address " , 
187188    " /projects/:creator_param/:project_param/pledge " , 
188189    " /settings/:notification_param/:enabled_param " , 
189-     " /users/:user_param/surveys/:survey_response_id " 
190+     " /users/:user_param/surveys/:survey_response_id " , 
191+     " /projects/:creator_param/:project_param/order_edits/:order_edit_id/checkout " 
190192  ] 
191193) 
192194
@@ -634,6 +636,7 @@ extension RouteParamsDecoded {
634636    case  surveyParam =  " survey_param " 
635637    case  userParam =  " user_param " 
636638    case  surveyResponseId =  " survey_response_id " 
639+     case  orderEditId =  " order_edit_id " 
637640  } 
638641
639642  public  func  comment( )  ->  String ? { 
@@ -725,4 +728,9 @@ extension RouteParamsDecoded {
725728    let  key  =  CodingKeys . surveyResponseId. rawValue
726729    return  self [ key] . flatMap  {  Int ( $0)  } 
727730  } 
731+ 
732+   public  func  orderEditParam( )  ->  Int ? { 
733+     let  key  =  CodingKeys . orderEditId. rawValue
734+     return  self [ key] . flatMap  {  Int ( $0)  } 
735+   } 
728736} 
0 commit comments