Skip to content

Commit

Permalink
Merge pull request #1586 from folio-org/fix-sourcecode-map
Browse files Browse the repository at this point in the history
Fix source-code map and gather-config-apidocs
  • Loading branch information
dcrossleyau committed Feb 7, 2024
2 parents f66422b + 7005f86 commit fd67e8a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def report_summary(json_apidocs, json_old_config):
def list_api_modules(json_repos):
"""Produce a list of API-related modules."""
list_modules = set()
repo_types = ["backend-mod", "backend-edge", "backend-infrastructure", "raml-shared"]
repo_types = ["backend-mod", "backend-mgr", "backend-edge", "backend-infrastructure", "raml-shared"]
for mod in sorted(json_repos["repos"], key=itemgetter('name')):
if mod["repoType"] in repo_types:
list_modules.add(mod["name"])
Expand Down
3 changes: 3 additions & 0 deletions _data/repos-group.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ stripes:
platform:
title: Stripes platform repos
stem: platform-
backend-mgr:
title: Backend mgr repos
stem: mgr-
backend-mod:
title: Backend mod repos
stem: mod-
Expand Down
6 changes: 3 additions & 3 deletions _data/repos.json
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@
"org": "folio-org",
"ramlDirName": null,
"repoLanguageHint": "java",
"repoType": "backend-mod",
"repoType": "backend-mgr",
"snippetIntro": "<p><code>mgr-applications</code> provides following functionality:</p>",
"workflows": [
"api-doc.yml",
Expand All @@ -951,7 +951,7 @@
"org": "folio-org",
"ramlDirName": null,
"repoLanguageHint": "java",
"repoType": "backend-mod",
"repoType": "backend-mgr",
"snippetIntro": "<p><code>mgr-tenant-entitlements</code> provides following functionality:</p>"
},
{
Expand All @@ -964,7 +964,7 @@
"org": "folio-org",
"ramlDirName": null,
"repoLanguageHint": "java",
"repoType": "backend-mod",
"repoType": "backend-mgr",
"snippetIntro": "<p>For now, <code>mgr-tenants</code> proxies requests to OKAPI's tenant API When any operation will happen on tenant, it will take place on realm in keycloak, also it will send a request to keycloak to retrieve a token and persist in cache for 60s for doing all the stuff related to realm</p>",
"workflows": [
"api-doc.yml",
Expand Down

0 comments on commit fd67e8a

Please sign in to comment.