mirror of
https://github.com/GAM-team/GAM.git
synced 2026-07-03 12:21:35 +00:00
Fix display of dataOwner field for secondary calendars
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
7.28.05
|
7.28.06
|
||||||
|
|
||||||
Updated `gam <UserTypeEntity> info|print|show calendars` and
|
Updated `gam <UserTypeEntity> info|print|show calendars` and
|
||||||
`gam calendars <CalendarEntity> print|show settings` to display the
|
`gam calendars <CalendarEntity> print|show settings` to display the
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ https://github.com/GAM-team/GAM/wiki
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
__author__ = 'GAM Team <google-apps-manager@googlegroups.com>'
|
__author__ = 'GAM Team <google-apps-manager@googlegroups.com>'
|
||||||
__version__ = '7.28.05'
|
__version__ = '7.28.06'
|
||||||
__license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'
|
__license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'
|
||||||
|
|
||||||
#pylint: disable=wrong-import-position
|
#pylint: disable=wrong-import-position
|
||||||
@@ -52746,6 +52746,8 @@ def _showCalendar(calendar, j, jcount, FJQC, acls=None):
|
|||||||
Ind.Increment()
|
Ind.Increment()
|
||||||
if 'primary' in calendar:
|
if 'primary' in calendar:
|
||||||
printKeyValueList(['Primary', calendar['primary']])
|
printKeyValueList(['Primary', calendar['primary']])
|
||||||
|
if 'dataOwner' in calendar:
|
||||||
|
printKeyValueList(['Data Owner', calendar['dataOwner']])
|
||||||
if 'accessRole' in calendar:
|
if 'accessRole' in calendar:
|
||||||
printKeyValueList(['Access Level', calendar['accessRole']])
|
printKeyValueList(['Access Level', calendar['accessRole']])
|
||||||
if 'deleted' in calendar:
|
if 'deleted' in calendar:
|
||||||
|
|||||||
Reference in New Issue
Block a user