(url, data = {}, options = {}, responseType = 'json')
| 216 | } |
| 217 | |
| 218 | export function apiAdminPut(url, data = {}, options = {}, responseType = 'json') { |
| 219 | checkAdminPermission() |
| 220 | return apiPut(url, data, options, true, responseType) |
| 221 | } |
| 222 | |
| 223 | export function apiSuperAdminPut(url, data = {}, options = {}, responseType = 'json') { |
| 224 | checkSuperAdminPermission() |
no test coverage detected