taxtank-core 0.2.3 → 0.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7779,6 +7779,12 @@
7779
7779
  return updatedBankAccount;
7780
7780
  }));
7781
7781
  };
7782
+ BankAccountService.prototype.getOwn = function () {
7783
+ return this.get()
7784
+ .pipe(operators.map(function (bankAccounts) {
7785
+ return bankAccounts.filter(function (bankAccount) { return bankAccount.isOwner(+localStorage.getItem('userId')); });
7786
+ }));
7787
+ };
7782
7788
  /**
7783
7789
  * Listen to EventDispatcherService events
7784
7790
  */