Skip to content

Commit

Permalink
[#269] Collapse version information to single point of control.
Browse files Browse the repository at this point in the history
  • Loading branch information
korydraughn authored and alanking committed Oct 31, 2024
1 parent c93b9cb commit 0148565
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ constexpr auto default_jsonschema() -> std::string_view
// clang-format on
return R"({{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://schemas.irods.org/irods-http-api/0.4.0/schema.json",
"$id": "https://schemas.irods.org/irods-http-api/config.json",
"type": "object",
"properties": {{
"http_server": {{
Expand Down
4 changes: 2 additions & 2 deletions test/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

'host': 'localhost',
'port': 9000,
'url_base': '/irods-http-api/0.4.0',
'url_base': '/irods-http-api/<version>',

'openid_connect': {
'mode': 'client'
Expand All @@ -30,7 +30,7 @@

schema = {
'$schema': 'http://json-schema.org/draft-07/schema#',
'$id': 'https://schemas.irods.org/irods-http-api/test/0.4.0/test-schema.json',
'$id': 'https://schemas.irods.org/irods-http-api/test_config.json',
'type': 'object',
'properties': {
'host': {
Expand Down

0 comments on commit 0148565

Please sign in to comment.