(config: StorageConfig)
| 73 | config.bucket && config.region ? { bucket: config.bucket, region: config.region } : undefined |
| 74 | |
| 75 | const buildBlobCustomConfig = (config: StorageConfig) => ({ |
| 76 | containerName: config.containerName!, |
| 77 | accountName: config.accountName!, |
| 78 | accountKey: config.accountKey, |
| 79 | connectionString: config.connectionString, |
| 80 | }) |
| 81 | |
| 82 | const verifyTokenForUser = (token: string | undefined, userId: string) => { |
| 83 | if (!token || typeof token !== 'string') { |
no outgoing calls
no test coverage detected