(name: string, namespace: string)
| 181 | } |
| 182 | |
| 183 | public findByNameAndNamespace(name: string, namespace: string) { |
| 184 | return this.findOne((key, value) => { |
| 185 | return value.name === name && (!namespace || value.namespace === namespace); |
| 186 | }); |
| 187 | } |
| 188 | |
| 189 | public findByUUIDAndSubscribeUrl(uuid: string, suburl: string) { |
| 190 | return this.findOne((key, value) => { |
no outgoing calls
no test coverage detected