GetAllIdentities retrieves all identities from the database. Returns: - []model.Identity: A slice of Identity models. - error: An error if the identities could not be retrieved.
()
| 83 | // - []model.Identity: A slice of Identity models. |
| 84 | // - error: An error if the identities could not be retrieved. |
| 85 | func (l *LedgerForge) GetAllIdentities() ([]model.Identity, error) { |
| 86 | return l.datasource.GetAllIdentities() |
| 87 | } |
| 88 | |
| 89 | // GetAllIdentitiesWithFilter retrieves identities using advanced filters. |
| 90 | // |