Skip to content

Commit

Permalink
Merge pull request #42 from eea/develop
Browse files Browse the repository at this point in the history
Fix typo in two role ids
  • Loading branch information
valipod authored Nov 22, 2021
2 parents a269ca8 + fbfce1b commit 923f11b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions docs/HISTORY.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

3.5 - (2021-11-22)
---------------------------
* fix typo in role id
[valipod]

3.4 - (2021-11-19)
---------------------------
* fix PCP incorrectly shown on all sibling roles
Expand Down
4 changes: 2 additions & 2 deletions eea/ldapadmin/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@
"eionet-biodiversity1",
"eionet-biodiversity2",
"eionet-circulareconomy",
"eionet-climatecangeadaptation"
"eionet-clmatechangemitigation",
"eionet-climatechangeadaptation",
"eionet-climatechangemitigation",
"eionet-communication",
"eionet-data",
"eionet-foodsystems",
Expand Down
6 changes: 3 additions & 3 deletions eea/ldapadmin/nfp_nrc.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ class SimplifiedRole(object):

def __init__(self, role_id, description):
group = re.match(
r'^eionet-(biodiversity1|biodiversity2|climatechange|health|'
r'circulareconomy|foresight|soe|foodsystems|landsystems|mobility|'
r'data|communication)(.*)-([^-]*)$',
r'^eionet-(biodiversity|climatechange|health|circulareconomy|'
r'foresight|soe|foodsystems|landsystems|mobility|data|'
r'communication)(.*)-([^-]*)$',
role_id, re.IGNORECASE)
nfp = re.match(
r'^eionet-nfp-(.*)(mc|cc|oc)-([^-]*)$',
Expand Down
2 changes: 1 addition & 1 deletion eea/ldapadmin/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.4
3.5

0 comments on commit 923f11b

Please sign in to comment.