-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add endpoint for EVSS #4370
Add endpoint for EVSS #4370
Conversation
75ea1c6
to
fa105ea
Compare
@@ -173,7 +173,6 @@ class ApidocsController < ApplicationController | |||
Swagger::Schemas::ConnectedApplications, | |||
Swagger::Schemas::Dependents, | |||
Swagger::Schemas::DismissedStatus, | |||
Swagger::Schemas::Form526::RatedDisabilities, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
duplicate
Generated by 🚫 Danger |
@@ -194,9 +195,6 @@ evss: | |||
cert_path: ~ | |||
key_path: ~ | |||
root_ca: ~ | |||
jwt: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unused
@@ -444,10 +442,6 @@ betamocks: | |||
cache_dir: /cache | |||
services_config: config/betamocks/services_config.yml | |||
|
|||
faraday_socks_proxy: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unused - TODO: check if I need to remove from devops repo.
this pr will fix the EVSS connection in review instances https://github.com/department-of-veterans-affairs/devops/pull/7107 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@@ -517,6 +517,13 @@ | |||
end | |||
end | |||
|
|||
it 'supports getting separation_locations' do | |||
expect(subject).to validate(:get, '/v0/disability_compensation_form/separation_locations', 401) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@SarahJaine What I missed earlier when we were talking was the headers
argument. The 401 response is unauthenticated.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For posterity, Anna and I review the PR in a video chat this morning. We decided on some future tickets but overall this looks great to me. Way to to Anna! 🎉
Description of change
For form526 BDD we need to add separation location, we can get that data from the EVSS reference data endpoint intakesites.
Previously, there were two other endpoints that were calling EVSS reference data endpoints through an old/unused authentication scheme so I stripped that out. That means we no longer need the sockisify gem.
Original issue
department-of-veterans-affairs/va.gov-team#9735
Things to know about this PR