mirror of https://github.com/Seich/Beau.git
Add a shortcut to a request's response body since it's what it'll be used for most of the time.
This commit is contained in:
parent
3de4378383
commit
2531a8bb32
|
|
@ -7,5 +7,5 @@ GET /posts/:
|
||||||
POST /posts/:
|
POST /posts/:
|
||||||
alias: new-post
|
alias: new-post
|
||||||
|
|
||||||
GET /users/$posts.response.body.0.userId:
|
GET /users/$posts.body.0.userId:
|
||||||
alias: post-user
|
alias: post-user
|
||||||
|
|
|
||||||
|
|
@ -79,6 +79,8 @@ class Request {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
results.body = results.response.body;
|
||||||
|
|
||||||
cache.add(`$${this.ALIAS}`, results);
|
cache.add(`$${this.ALIAS}`, results);
|
||||||
|
|
||||||
resolve(results);
|
resolve(results);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue