mirror of
https://github.com/plankanban/planka.git
synced 2025-07-20 13:49:43 +02:00
10 lines
174 B
JavaScript
10 lines
174 B
JavaScript
|
import http from './http';
|
||
|
|
||
|
/* Actions */
|
||
|
|
||
|
const createAccessToken = (data, headers) => http.post('/access-tokens', data, headers);
|
||
|
|
||
|
export default {
|
||
|
createAccessToken,
|
||
|
};
|