8 lines
134 B
JavaScript
8 lines
134 B
JavaScript
/*
|
|
* Utilities for calling the API
|
|
*/
|
|
|
|
function get_rest_url(resource) {
|
|
return ReservairServiceAPI.restUrl + '/' + resource;
|
|
}
|