(base: string, params: AgiloftLockRecordParams)
| 125 | } |
| 126 | |
| 127 | export function buildLockRecordUrl(base: string, params: AgiloftLockRecordParams): string { |
| 128 | const id = encodeURIComponent(params.recordId.trim()) |
| 129 | return `${base}/ewws/EWLock/.json?${buildEwBaseQuery(params)}&id=${id}` |
| 130 | } |
| 131 | |
| 132 | export function buildAttachFileUrl( |
| 133 | base: string, |
no test coverage detected