()
| 53 | } |
| 54 | |
| 55 | func (q SpaceQuota) FormattedRoutePortsLimit() string { |
| 56 | reservedRoutePortsLimit := T(UnlimitedDisplay) |
| 57 | if q.ReservedRoutePortsLimit != "-1" { |
| 58 | reservedRoutePortsLimit = string(q.ReservedRoutePortsLimit) |
| 59 | } |
| 60 | |
| 61 | return reservedRoutePortsLimit |
| 62 | } |
| 63 | |
| 64 | type SpaceQuotaResponse struct { |
| 65 | GUID string `json:"guid,omitempty"` |
no outgoing calls
no test coverage detected