-
Notifications
You must be signed in to change notification settings - Fork 29
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
REST client CodeLens only shows up for GET annotations. #94
Comments
The main reason is that POST/PUT should not be clickable. I agree with you, POST/PUT CodeLens should appear but we need to manage click:
|
if the solution to make the links not clickable is to just send a null/empty command, we should do that |
It should work. |
I can have a look. |
I've been working through the Quarkus super heros example, and this would be very nice to have. I thought the app/ the Quarkus dev mode was broken when the code lens didn't show up. |
I'm interested in working on this issue! |
codelenses are only shown on GET requests because they're the only types of requests that make sense to provide a hyperlink to |
I think we can have it show up, just that we need to make it non-clickable. #94 (comment) mentions there is a way to do that. |
Currently the MicroProfile REST Client CodeLens only show up for paths annotated with
@GET
.I think it makes sense to display them for other annotations like POST or PUT even though they cannot be accessed from the browser. (If possible maybe we could make CodeLens for POST/PUT etc. requests not clickable?)
IE. if u have a rest client with just a POST endpoint, you might still want the CodeLens to appear so you can quickly see the full URL that is configured by your mp-config.properties file.
The text was updated successfully, but these errors were encountered: