Skip to content

Instantly share code, notes, and snippets.

@coderkan
Created May 11, 2020 16:47
Show Gist options
  • Save coderkan/a0d60e8247debed875ef573e43d2756a to your computer and use it in GitHub Desktop.
Save coderkan/a0d60e8247debed875ef573e43d2756a to your computer and use it in GitHub Desktop.
private _employeeJsonPath = "assets/employes.json";
const { url, method } = req;
if (url.endsWith("/employes") && method === "GET") {
req = req.clone({
url: this._employeeJsonPath,
});
return next.handle(req).pipe(delay(500));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment