2015-05-29 01:54:56 +02:00
|
|
|
import AppConstants from './application_constants';
|
|
|
|
|
|
|
|
let apiUrls = {
|
|
|
|
'ownership_shares_mail' : AppConstants.baseUrl + 'ownership/shares/mail/',
|
2015-05-29 15:16:42 +02:00
|
|
|
'ownership_transfers' : AppConstants.baseUrl + 'ownership/transfers/',
|
2015-06-01 13:02:53 +02:00
|
|
|
'ownership_loans' : AppConstants.baseUrl + 'ownership/loans/',
|
2015-05-29 16:53:30 +02:00
|
|
|
'ownership_consigns' : AppConstants.baseUrl + 'ownership/consigns/',
|
|
|
|
'ownership_unconsigns' : AppConstants.baseUrl + 'ownership/unconsigns/',
|
|
|
|
'ownership_unconsigns_request' : AppConstants.baseUrl + 'ownership/unconsigns/request/'
|
2015-05-29 01:54:56 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export default apiUrls;
|