Skip to content

Commit

Permalink
add more information to "/" endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
apdavison committed Nov 24, 2023
1 parent d698338 commit f0de677
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion api/simqueue/resources/for_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
SessionStatus,
)
from ..data_repositories import SourceFileDoesNotExist, SourceFileIsTooBig, EBRAINSDrive
from .. import db, oauth, utils
from .. import db, oauth, utils, settings
from ..globals import PROVIDER_QUEUE_NAMES

logger = logging.getLogger("simqueue")
Expand Down Expand Up @@ -86,6 +86,11 @@ def about_this_api():
"about": "This is the EBRAINS Neuromorphic Computing Job Queue API.",
"version": "3",
"links": {"documentation": "/docs"},
"authentication": {
"server": settings.EBRAINS_IAM_SERVICE_URL,
"client-id": settings.EBRAINS_IAM_CLIENT_ID,
"collaboratory": settings.EBRAINS_COLLAB_SERVICE_URL,
},
}


Expand Down

0 comments on commit f0de677

Please sign in to comment.