mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
8 lines
249 B
JavaScript
8 lines
249 B
JavaScript
|
import AppConstants from './application_constants';
|
||
|
|
||
|
let apiUrls = {
|
||
|
'ownership_shares_mail' : AppConstants.baseUrl + 'ownership/shares/mail/',
|
||
|
'ownership_transfers' : AppConstants.baseUrl + 'ownership/transfers/'
|
||
|
};
|
||
|
|
||
|
export default apiUrls;
|