def canViewParticipants(self): """ Check the permissions to edit/delete participants """ return checkPermission(constants.VIEW_EDIT_PERMISSION, self)
def canManageParticipants(self): """ Check the permissions to edit/delete participants """ return checkPermission(view_management_screens, self)
def canManageParticipants(self): """ Check the permissions to edit/delete meeting settgins and participants """ return checkPermission(constants.MANAGE_PERMISSION, self)