mirror of
https://github.com/ysoftdevs/odc-analyzer.git
synced 2026-03-22 09:10:00 +01:00
Updated external user service to return email. The email is a new identifier.
This commit is contained in:
@@ -8,6 +8,6 @@ class AllowAllCredentialsVerificationService(app: play.api.Application) extends
|
||||
sys.error("allow-all can be used in dev mode only")
|
||||
}
|
||||
|
||||
override def verifyCredentials(username: String, password: String): Future[Boolean] = Future.successful(true)
|
||||
override def verifyCredentials(username: String, password: String): Future[Either[String, String]] = Future.successful(Right(username))
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user