1
0
mirror of https://github.com/ascribe/onion.git synced 2024-12-23 01:39:36 +01:00
onion/js/fetchers/license_fetcher.js

22 lines
435 B
JavaScript
Raw Permalink Normal View History

2015-06-30 10:42:58 +02:00
'use strict';
import request from '../utils/request';
2015-06-30 10:42:58 +02:00
2016-06-13 17:33:47 +02:00
import { getCurrentSubdomain } from '../utils/url';
2015-06-30 10:42:58 +02:00
let LicenseFetcher = {
/**
* Fetch the available licenses from the API (might be bound to the subdomain e.g. cc.ascribe.io).
*/
fetch() {
const query = {
subdomain: getCurrentSubdomain()
};
return request('licenses', { query });
2015-06-30 10:42:58 +02:00
}
};
export default LicenseFetcher;