65272: filter relationship metadata when displaying on item-metadata, keep them stored in the object-updates store

This commit is contained in:
Kristof De Langhe
2020-02-11 14:55:08 +01:00
parent 1885845fef
commit e3facbd8c8
5 changed files with 14 additions and 22 deletions

View File

@@ -6,6 +6,6 @@ import { RestRequestMethod } from './rest-request-method';
* Represents a data service to update a given object
*/
export interface UpdateDataService<T> {
update(object: T, ignoreMetadataFields?: string[]): Observable<RemoteData<T>>;
update(object: T): Observable<RemoteData<T>>;
commitUpdates(method?: RestRequestMethod);
}