You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public getRandomHouse(profile: any = {}): Observable<any> {
let _method: string = "POST";
let _url: string = LoopBackConfig.getPath() + "/" + LoopBackConfig.getApiVersion() +
"/houses/random";
let _routeParams: any = {
profile: profile
};
let _postBody: any = {};
let _urlParams: any = {};
let result = this.request(_method, _url, _routeParams, _urlParams, _postBody);
return result;
}
Shouldn't the postBody have the profile?
The text was updated successfully, but these errors were encountered:
generates:
Shouldn't the postBody have the profile?
The text was updated successfully, but these errors were encountered: