You are here

public function ForcePasswordChangeService::getFirstTimeLoginUids in Force Password Change 2.0.x

Same name and namespace in other branches
  1. 8 src/Service/ForcePasswordChangeService.php \Drupal\force_password_change\Service\ForcePasswordChangeService::getFirstTimeLoginUids()

Retrieve a list of users who have a pending forced password change on their first login.

Return value

array An array of User IDs of users who have a pending forced password change on their first login.

Overrides ForcePasswordChangeServiceInterface::getFirstTimeLoginUids

File

src/Service/ForcePasswordChangeService.php, line 290

Class

ForcePasswordChangeService

Namespace

Drupal\force_password_change\Service

Code

public function getFirstTimeLoginUids() {
  return $this->mapper
    ->getFirstTimeLoginUids();
}