-
Notifications
You must be signed in to change notification settings - Fork 5
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
bugfix/update-cell-type-marker-genes-endpoint-to-accept-slash-in-the-celltype #475
bugfix/update-cell-type-marker-genes-endpoint-to-accept-slash-in-the-celltype #475
Conversation
In the frondend celltypewheel when we clicked on celltype with / value, backend not accepting that URI, so we were added encodeURIComponent(btoa) functions at frontend to do Base64 encode of celltype as part of URI to accept '/' by the tomcat and API endpoint(/json/cell-type-marker-genes/{cellType}) Signed-off-by: upendrakumbham <[email protected]>
Signed-off-by: upendrakumbham <[email protected]>
Signed-off-by: upendrakumbham <[email protected]>
Signed-off-by: upendrakumbham <[email protected]>
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.
Thanks for your work!
Just tiny suggestions.
Thanks
...n/java/uk/ac/ebi/atlas/search/metadata/JsonMultiexperimentCellTypeMarkerGenesController.java
Outdated
Show resolved
Hide resolved
...n/java/uk/ac/ebi/atlas/search/metadata/JsonMultiexperimentCellTypeMarkerGenesController.java
Outdated
Show resolved
Hide resolved
...ava/uk/ac/ebi/atlas/search/metadata/JsonMultiexperimentCellTypeMarkerGenesControllerWIT.java
Outdated
Show resolved
Hide resolved
Co-authored-by: Károly Erdős <[email protected]>
Co-authored-by: Károly Erdős <[email protected]>
Signed-off-by: upendrakumbham <[email protected]>
Signed-off-by: upendrakumbham <[email protected]>
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! Thanks for your work! 👍
Signed-off-by: upendrakumbham <[email protected]>
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.
Good to go.
Thanks
Signed-off-by: upendrakumbham <[email protected]>
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.
Fine with me, I am going to approve it.
All I ask is to add [Bugfix] prefix when you merge it to the merge's commit message.
Thanks
Add Base64 decoder to decode cell type which is received by the frontend
In the frontend celltypewheel when we clicked on cell type with / value, the backend did not accept that URI, so we added encodeURIComponent(btoa) functions at the frontend to do Base64 encode of cell type as part of URI to accept '/' by the tomcat and API endpoint(/json/cell-type-marker-genes/{cellType})