1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-20 05:39:43 +02:00
planka/client/src/api/root.js

10 lines
149 B
JavaScript
Raw Normal View History

2023-10-17 19:18:19 +02:00
import http from './http';
/* Actions */
const getConfig = (headers) => http.get('/config', undefined, headers);
export default {
getConfig,
};