2015-05-29 01:54:56 +02:00
|
|
|
import AppConstants from './application_constants';
|
|
|
|
|
|
|
|
let apiUrls = {
|
|
|
|
'ownership_shares_mail' : AppConstants.baseUrl + 'ownership/shares/mail/',
|
2015-06-01 14:22:04 +02:00
|
|
|
'ownership_transfers' : AppConstants.baseUrl + 'ownership/transfers/',
|
2015-06-01 17:43:38 +02:00
|
|
|
|
|
|
|
'user': AppConstants.baseUrl + 'users/',
|
|
|
|
|
2015-06-01 14:22:04 +02:00
|
|
|
'pieces_list': AppConstants.baseUrl + 'pieces/',
|
2015-06-01 17:43:38 +02:00
|
|
|
'piece': AppConstants.baseUrl + 'pieces/${piece_id}',
|
|
|
|
|
|
|
|
'edition': AppConstants.baseUrl + 'editions/${bitcoin_id}/',
|
|
|
|
'editions_list': AppConstants.baseUrl + 'pieces/${piece_id}/editions/'
|
2015-05-29 01:54:56 +02:00
|
|
|
};
|
|
|
|
|
2015-06-01 14:22:04 +02:00
|
|
|
export default apiUrls;
|