We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Now keys.json like an numeric array of data like:
[{"id":,"project_id":,"name":"","body":"","login":"","file":null,"url":"","comment":"","whitelist":""}]
But redmine standart json API like
{"keys":[{"id":,"project_id":,"name":"","body":"","login":"","file":null,"url":"","comment":"","whitelist":""}]}
Because of this difference you may have a trouble with extending external libraries, working with redmine rest api
Fixing (vault/app/controllers/keys_controller.rb: line 72):
- format.json { render json: @keys } + format.json { render json: { :keys => @keys }}
The text was updated successfully, but these errors were encountered:
noshutdown-ru-user
No branches or pull requests
Now keys.json like an numeric array of data like:
But redmine standart json API like
Because of this difference you may have a trouble with extending external libraries, working with redmine rest api
Fixing (vault/app/controllers/keys_controller.rb: line 72):
The text was updated successfully, but these errors were encountered: