[Persistence] Delegate new 'persisted' method

This commit is contained in:
Victor Woeltjen 2016-05-19 13:31:23 -07:00
parent f1e81c359e
commit bcf85db9c4

View File

@ -93,6 +93,10 @@ define(
return this.persistenceCapability.getSpace();
};
TransactionalPersistenceCapability.prototype.persisted = function () {
return this.persistenceCapability.persisted();
};
return TransactionalPersistenceCapability;
}
);