Merge branch 'master' into angular-cli

This commit is contained in:
lotte
2020-03-19 10:27:13 +01:00
43 changed files with 3009 additions and 73 deletions

View File

@@ -50,6 +50,14 @@ describe('ServerSyncBufferEffects', () => {
_links: { self: { href: link } }
});
return observableOf(object);
},
getBySelfLink: (link) => {
const object = Object.assign(new DSpaceObject(), {
_links: {
self: { href: link }
}
});
return observableOf(object);
}
}
},