Skip to content

Commit

Permalink
Merge pull request #3427 from cloudfoundry-incubator/fix-service-brok…
Browse files Browse the repository at this point in the history
…er-action

Fix service broker action
  • Loading branch information
nwmac authored Mar 11, 2019
2 parents caef167 + cf27881 commit df3dff7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ export class GetServiceBrokers extends CFStartAction implements PaginatedAction
}
export class GetServiceBroker extends CFStartAction implements IRequestAction {
constructor(
public serviceBrokerGuid: string,
public guid: string,
public endpointGuid: string,
public includeRelations: string[] = [],
public populateMissing = true
) {
super();
this.options = new RequestOptions();
this.options.url = `service_brokers/${serviceBrokerGuid}`;
this.options.url = `service_brokers/${guid}`;
this.options.method = 'get';
this.options.params = new URLSearchParams();
}
Expand Down

0 comments on commit df3dff7

Please sign in to comment.