diff --git a/config/features.yml b/config/features.yml index ce8f1ad5f09..bea5e2669eb 100644 --- a/config/features.yml +++ b/config/features.yml @@ -798,9 +798,9 @@ features: actor_type: user description: When enabled, profile service history will include military academy attendance. enable_in_development: true - profile_hide_direct_deposit_comp_and_pen: + profile_hide_direct_deposit: actor_type: user - description: Hides disability comp and pen section of the Profile - Direct Deposit page during a service outage + description: Hides the Profile - Direct Deposit page content during a service outage enable_in_development: false profile_show_credential_retirement_messaging: actor_type: user @@ -808,6 +808,9 @@ features: profile_show_direct_deposit_single_form: actor_type: user description: Show/hide the single direct deposit form in profile for all users + profile_show_direct_deposit_single_form_uat: + actor_type: user + description: Show/hide the single direct deposit form just for users during UAT only profile_show_direct_deposit_single_form_alert: actor_type: user description: Show/hide an alert with information around migrating to a single direct deposit form in profile diff --git a/modules/ask_va_api/app/controllers/ask_va_api/v0/inquiries_controller.rb b/modules/ask_va_api/app/controllers/ask_va_api/v0/inquiries_controller.rb index 0ec2b8d17ed..ac0b4e30505 100644 --- a/modules/ask_va_api/app/controllers/ask_va_api/v0/inquiries_controller.rb +++ b/modules/ask_va_api/app/controllers/ask_va_api/v0/inquiries_controller.rb @@ -20,7 +20,7 @@ def show def test_create service = Crm::Service.new(icn: nil) payload = { reply: params[:reply] } - response = service.call(endpoint: params[:endpoint], method: :post, payload:) + response = service.call(endpoint: params[:endpoint], method: :put, payload:) render json: response.to_json, status: :ok end diff --git a/modules/ask_va_api/app/lib/ask_va_api/correspondences/creator.rb b/modules/ask_va_api/app/lib/ask_va_api/correspondences/creator.rb index 8e22434a394..9cdf1ad1759 100644 --- a/modules/ask_va_api/app/lib/ask_va_api/correspondences/creator.rb +++ b/modules/ask_va_api/app/lib/ask_va_api/correspondences/creator.rb @@ -29,7 +29,7 @@ def default_service def post_data(payload: {}) endpoint = "inquiries/#{inquiry_id}/reply/new" - response = service.call(endpoint:, method: :post, payload:) + response = service.call(endpoint:, method: :put, payload:) handle_response_data(response) end