(url, options = {})
| 238 | } |
| 239 | |
| 240 | export function apiAdminDelete(url, options = {}) { |
| 241 | checkAdminPermission() |
| 242 | return apiDelete(url, options, true) |
| 243 | } |
| 244 | |
| 245 | export function apiSuperAdminDelete(url, options = {}) { |
| 246 | checkSuperAdminPermission() |
no test coverage detected