()
| 58 | } |
| 59 | |
| 60 | func (o Organization) HumanName() string { |
| 61 | if o.DisplayName == "" { |
| 62 | return o.Name |
| 63 | } |
| 64 | return o.DisplayName |
| 65 | } |
| 66 | |
| 67 | type OrganizationMember struct { |
| 68 | UserID uuid.UUID `table:"user id" json:"user_id" format:"uuid"` |
no outgoing calls
no test coverage detected