Browse Source

add find filter value

PHP-GTK3
yggverse 4 months ago
parent
commit
892de8df13
  1. 4
      src/Entity/Browser/Container/Page/Auth.php

4
src/Entity/Browser/Container/Page/Auth.php

@ -79,7 +79,9 @@ class Auth @@ -79,7 +79,9 @@ class Auth
);
// Search database for auth records
foreach ($this->page->container->browser->database->auth->find() as $auth)
foreach ($this->page->container->browser->database->auth->find(
$this->page->navbar->request->getValue()
) as $auth)
{
// Get related identity records
if ($identity = $this->page->container->browser->database->identity->get($auth->identity))

Loading…
Cancel
Save