All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.jeroenr.tepkin.auth.NoAuthentication.scala Maven / Gradle / Ivy

The newest version!
package com.github.jeroenr.tepkin.auth

import akka.actor.{Actor, ActorLogging, ActorRef}
import com.github.jeroenr.tepkin.MongoCredentials

trait NoAuthentication extends Authentication {
  this: Actor with ActorLogging =>

  override def authenticate(connection: ActorRef, databaseName: String, credentials: Option[MongoCredentials]): Unit = {
    authenticated(connection)
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy