Browse Source

Now EmFieldGroup.fields(), EmType.fields() and EmType.field_groups() return instance and not uid

Yann Weber 9 years ago
parent
commit
ea383eb6b7
2 changed files with 4 additions and 2 deletions
  1. 2
    1
      EditorialModel/fieldgroups.py
  2. 2
    1
      EditorialModel/types.py

+ 2
- 1
EditorialModel/fieldgroups.py View File

@@ -68,4 +68,5 @@ class EmFieldGroup(EmComponent):
68 68
         res = conn.execute(req)
69 69
         rows = res.fetchall()
70 70
         conn.close()
71
-        return [ row['uid'] for row in rows]
71
+        return [ EmField(row['uid']) for row in rows]
72
+

+ 2
- 1
EditorialModel/types.py View File

@@ -53,7 +53,7 @@ class EmType(EmComponent):
53 53
         rows = res.fetchall()
54 54
         conn.close()
55 55
 
56
-        return [ row['uid'] for row in rows ]
56
+        return [ EmFieldGroup(row['uid']) for row in rows ]
57 57
 
58 58
     ## Get the list of associated fields
59 59
     # @return A list of EmField uid
@@ -130,3 +130,4 @@ class EmType(EmComponent):
130 130
     # @see EmFields
131 131
     def linked_types(self):
132 132
         pass
133
+

Loading…
Cancel
Save