mirror of
https://github.com/plankanban/planka.git
synced 2025-12-18 01:11:13 +03:00
10 lines
174 B
JavaScript
Executable File
10 lines
174 B
JavaScript
Executable File
import http from './http';
|
|
|
|
/* Actions */
|
|
|
|
const createAccessToken = (data, headers) => http.post('/access-tokens', data, headers);
|
|
|
|
export default {
|
|
createAccessToken,
|
|
};
|