(attr, withDefault = false)
| 111 | } |
| 112 | |
| 113 | get (attr, withDefault = false) { |
| 114 | const prop = super.get(attr, withDefault) |
| 115 | if (attr === 'products') { |
| 116 | return prop != null ? prop : [] |
| 117 | } |
| 118 | return prop |
| 119 | } |
| 120 | |
| 121 | isAdmin () { |
| 122 | const needle = this.constructor.PERMISSIONS.COCO_ADMIN |
no outgoing calls