You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
327 B
15 lines
327 B
'use strict';
|
|
import request from 'superagent';
|
|
|
|
export const ApiTable = {
|
|
login: 'project/login',
|
|
logout: 'logout',
|
|
|
|
getEnterprisesMembers: 'enterprises/{enterpriseId}/members',
|
|
};
|
|
|
|
export const RouteTable = {
|
|
apiRoot: '/api/root',
|
|
fileUpload: '/_upload/new',
|
|
cleanUpUploadTrash: '/_upload/cleanup',
|
|
};
|