From ac5836f66bca767dae82b5eb43ca9e7e25d1aca2 Mon Sep 17 00:00:00 2001
From: vermeul <swen@ethz.ch>
Date: Wed, 21 Aug 2019 18:07:36 +0200
Subject: [PATCH] extract name (for validationPlugins)

---
 pybis/src/python/pybis/attribute.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pybis/src/python/pybis/attribute.py b/pybis/src/python/pybis/attribute.py
index 0c947fe5a9c..2b15c31b44f 100644
--- a/pybis/src/python/pybis/attribute.py
+++ b/pybis/src/python/pybis/attribute.py
@@ -385,6 +385,8 @@ class AttrHolder():
                     return self.__dict__[int_name]['identifier']
                 elif "code" in self.__dict__[int_name]:
                     return self.__dict__[int_name]['code']
+                elif "name" in self.__dict__[int_name]:
+                    return self.__dict__[int_name]['name']
                 elif "userId" in self.__dict__[int_name]:
                     return self.__dict__[int_name]['userId']
                 elif "permId" in self.__dict__[int_name]:
@@ -786,8 +788,6 @@ class AttrHolder():
                 "permId": userId,
                 "@type": "as.dto.person.id.PersonPermId"
             })
-    set_members = set_users  # Alias
-
         
     def add_users(self, userIds):
         if userIds is None:
-- 
GitLab