diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 3126a91..cdae33e 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [JHP-82]: Enables support for JupyterHub named servers. This feature allows users to start multiple Jupyter notebooks or Dashboards from the XNAT UI. A new preference has been added to the plugin to limit the number of named servers a user can start. The default is 1. May require browser cache to be cleared. +- [JHP-92]: Adds plugin description, visible in the installed plugins site administration page in XNAT. ### Changed @@ -74,3 +75,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [JHP-82]: https://radiologics.atlassian.net/jira/software/c/projects/JHP/issues/JHP-82 [JHP-83]: https://radiologics.atlassian.net/jira/software/c/projects/JHP/issues/JHP-83 [JHP-88]: https://radiologics.atlassian.net/jira/software/c/projects/JHP/issues/JHP-88 +[JHP-92]: https://radiologics.atlassian.net/jira/software/c/projects/JHP/issues/JHP-92 \ No newline at end of file diff --git a/src/main/java/org/nrg/xnatx/plugins/jupyterhub/JupyterHubPlugin.java b/src/main/java/org/nrg/xnatx/plugins/jupyterhub/JupyterHubPlugin.java index acd8f0d..a8dc9e9 100644 --- a/src/main/java/org/nrg/xnatx/plugins/jupyterhub/JupyterHubPlugin.java +++ b/src/main/java/org/nrg/xnatx/plugins/jupyterhub/JupyterHubPlugin.java @@ -18,6 +18,7 @@ @XnatPlugin(value = "jupyterHubPlugin", name = "XNAT JupyterHub Plugin", + description = "Integrates JupyterHub with XNAT for launching Jupyter notebooks on XNAT data.", logConfigurationFile = "jupyterhub-logback.xml", entityPackages = {"org.nrg.xnatx.plugins.jupyterhub.entities"}) @ComponentScan({"org.nrg.xnatx.plugins.jupyterhub.preferences",