Skip to content
Snippets Groups Projects
Unverified Commit 06818655 authored by Filipa Lacerda's avatar Filipa Lacerda
Browse files

Update method name

parent fd67916f
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -66,7 +66,7 @@ export default {
updateContent(parameters) {
this.updateInternalState(parameters);
// fetch new data
return this.service.get(this.requestData)
return this.service.fetchEnvironments(this.requestData)
.then(response => this.successCallback(response))
.then(() => {
// restart polling
Loading
Loading
@@ -101,7 +101,7 @@ export default {
fetchEnvironments() {
this.isLoading = true;
 
return this.service.get(this.requestData)
return this.service.fetchEnvironments(this.requestData)
.then(this.successCallback)
.catch(this.errorCallback);
},
Loading
Loading
@@ -137,7 +137,7 @@ export default {
 
this.poll = new Poll({
resource: this.service,
method: 'get',
method: 'fetchEnvironments',
data: this.requestData,
successCallback: this.successCallback,
errorCallback: this.errorCallback,
Loading
Loading
Loading
Loading
@@ -6,7 +6,7 @@ export default class EnvironmentsService {
this.folderResults = 3;
}
 
get(options = {}) {
fetchEnvironments(options = {}) {
const { scope, page } = options;
return axios.get(this.environmentsEndpoint, { params: { scope, page } });
}
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment