(fileId: string)
| 1227 | } |
| 1228 | |
| 1229 | getFileUrl(fileId: string): string { |
| 1230 | return buildRestUrl(this.config.serverHttpUrl, `/files/${encodeURIComponent(fileId)}`); |
| 1231 | } |
| 1232 | |
| 1233 | /** Fetch a file's bytes with the Bearer credential attached. Use this (not |
| 1234 | * getFileUrl) when the bytes feed a <video>/<img> src: the browser loads |
nothing calls this directly
no test coverage detected