mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
a247e111c0
Conflicts: js/constants/api_urls.js js/constants/application_constants.js
16 lines
566 B
JavaScript
16 lines
566 B
JavaScript
'use strict';
|
|
|
|
let constants = {
|
|
//'baseUrl': 'http://localhost:8000/api/',
|
|
|
|
//FIXME: referring to a global variable in `window` is not
|
|
// super pro. What if we render stuff on the server?
|
|
//'baseUrl': window.BASE_URL,
|
|
'apiEndpoint': window.API_ENDPOINT,
|
|
'baseUrl': window.BASE_URL,
|
|
'aclList': ['edit', 'consign', 'consign_request', 'unconsign', 'unconsign_request', 'transfer',
|
|
'loan', 'loan_request', 'share', 'download', 'view', 'delete', 'del_from_collection', 'add_to_collection']
|
|
};
|
|
|
|
export default constants;
|