(url, data = {}, options = {}, responseType = 'json')
| 184 | } |
| 185 | |
| 186 | export function apiAdminPost(url, data = {}, options = {}, responseType = 'json') { |
| 187 | checkAdminPermission() |
| 188 | return apiPost(url, data, options, true, responseType) |
| 189 | } |
| 190 | |
| 191 | export function apiSuperAdminPost(url, data = {}, options = {}, responseType = 'json') { |
| 192 | checkSuperAdminPermission() |
no test coverage detected