mirror of
https://github.com/plankanban/planka.git
synced 2025-07-20 05:39:43 +02:00
10 lines
149 B
JavaScript
10 lines
149 B
JavaScript
|
import http from './http';
|
||
|
|
||
|
/* Actions */
|
||
|
|
||
|
const getConfig = (headers) => http.get('/config', undefined, headers);
|
||
|
|
||
|
export default {
|
||
|
getConfig,
|
||
|
};
|