Skip to content

Commit

Permalink
Merge branch 'master' into 78699_block_csp_acr
Browse files Browse the repository at this point in the history
  • Loading branch information
bramleyjl authored Apr 18, 2024
2 parents c99ed4a + c55e75d commit b8ae17a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions config/features.yml
Original file line number Diff line number Diff line change
Expand Up @@ -798,16 +798,19 @@ 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
description: Show/hide MHV and DS Logon credential retirement messaging in profile
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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit b8ae17a

Please sign in to comment.