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