Skip to content

Commit

Permalink
Fix abbreviation attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
baszoetekouw committed Nov 27, 2023
1 parent f99ea6b commit 3afa8e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plsc_ordered.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def create(src, dst):
'objectClass': ['dcObject', 'organization', 'extensibleObject'],
'dc': [service],
'o': [service],
'name': [details['short_name']],
'name': [details['abbreviation']],
'displayName': [details['name']],
}
aup = details['aup']
Expand Down
3 changes: 1 addition & 2 deletions sbs.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,7 @@ def service_collaborations(self):
'aup': services[s].get('accepted_user_policy', None),
'pp': services[s].get('privacy_policy', None),
'enabled': services[s].get('ldap_enabled', False),
# 'short_name': services[s].get('short_name', None),
'short_name': services[s]['entity_id'],
'abbreviation': services[s].get('abbreviation', None),
'name': services[s].get('name', None),
}

Expand Down

0 comments on commit 3afa8e7

Please sign in to comment.