Skip to content

Commit ec334ab

Browse files
authored
#21 add default serviceURL (#22)
1 parent 5cc7ec3 commit ec334ab

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

src/main.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,11 @@ class AEMHeadless {
3131
*/
3232
constructor (config) {
3333
let endpoint = AEM_GRAPHQL_ACTIONS.endpoint
34-
let serviceURL = config
35-
if (typeof config !== 'string') {
34+
let serviceURL = AEM_GRAPHQL_ACTIONS.serviceURL
35+
36+
if (typeof config === 'string') {
37+
serviceURL = config
38+
} else {
3639
serviceURL = config.serviceURL || serviceURL
3740
endpoint = config.endpoint || endpoint
3841
this.auth = config.auth
@@ -249,7 +252,6 @@ class AEMHeadless {
249252
* @returns void
250253
*/
251254
__validateUrl (url) {
252-
console.log('URLZ', url)
253255
if (!url) {
254256
throw new SDKError('InvalidParameter', 'SDKError', '', 'Required param missing: endpoint')
255257
}

src/utils/config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ const AEM_GRAPHQL_ACTIONS = {
22
persist: 'graphql/persist.json',
33
execute: 'graphql/execute.json',
44
list: 'graphql/list.json',
5-
endpoint: 'content/graphql/global/endpoint.json'
5+
endpoint: 'content/graphql/global/endpoint.json',
6+
serviceURL: '/'
67
}
78

89
module.exports = {

0 commit comments

Comments
 (0)