From 9616d19ae7c2bad61bedbf070828f222815c9ca6 Mon Sep 17 00:00:00 2001 From: YONG WOOK KIM Date: Mon, 21 Oct 2024 16:21:11 -0500 Subject: [PATCH] Added Geoserver to incore-auth (#48) * Added Geoserver to incore-auth * added geoserver to group permission * added the path geoserver/web * Added extra line to fire github action * reverted back --- CHANGELOG.md | 6 ++++++ incore_auth/config.json | 8 ++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f4745a..ada92cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) From version 1.2.0 the file IP2LOCATION-LITE-DB5.BIN is no longer part of the docker image and will need to be downloaded (after registration) from [ip2location](https://lite.ip2location.com/database/ip-country?lang=en_US) and be placed in /srv/incore_auth. +# Unreleased + +# Added +- Geoserver is added to incore-auth [#46](https://github.com/IN-CORE/incore-auth/issues/46) +- Project service is added to incore-auth [#47](https://github.com/IN-CORE/incore-auth/issues/47) + # [1.7.0] - 2023-06-14 ## Added diff --git a/incore_auth/config.json b/incore_auth/config.json index 7a808ea..8bc8256 100644 --- a/incore_auth/config.json +++ b/incore_auth/config.json @@ -1,6 +1,6 @@ { - "PROTECTED_RESOURCES": ["data", "dfr3", "hazard", "space", "semantics", "maestro", "datawolf", "plotting", "hub"], - "TRACKED_RESOURCES": ["data", "dfr3", "hazard", "space", "semantics", "maestro", "datafwolf", "plotting", "playbook", "frontpage", "geoserver", "doc", "hub", "lab", "auth", "DFR3Viewer", "DataViewer", "HazardViewer", "jupyterhub"], - "GROUPS": {"incore_user": ["data", "dfr3", "hazard", "space", "semantics", "maestro", "datawolf", "plotting", "hub"]}, - "ROLES": {"incore_user": ["data", "dfr3", "hazard", "space", "semantics", "maestro", "datawolf", "plotting", "hub"]} + "PROTECTED_RESOURCES": ["data", "dfr3", "hazard", "space", "semantics", "project", "maestro", "datawolf", "plotting", "hub", "geoserver", "geoserver/web"], + "TRACKED_RESOURCES": ["data", "dfr3", "hazard", "space", "semantics", "project", "maestro", "datafwolf", "plotting", "playbook", "frontpage", "geoserver", "doc", "hub", "lab", "auth", "DFR3Viewer", "DataViewer", "HazardViewer", "jupyterhub"], + "GROUPS": {"incore_user": ["data", "dfr3", "hazard", "space", "semantics", "project", "maestro", "datawolf", "plotting", "hub", "geoserver", "geoserver/web"]}, + "ROLES": {"incore_user": ["data", "dfr3", "hazard", "space", "semantics", "project", "maestro", "datawolf", "plotting", "hub", "geoserver", "geoserver/web"]} }