chore(base): resolved merge-conflict

#5 [Story] Create User Sessions
This commit is contained in:
2025-10-26 11:24:05 +01:00
parent b6f0089d64
commit ac1200d3a4
2 changed files with 2 additions and 10 deletions

View File

@@ -1,15 +1,10 @@
package logic.user
import com.google.inject.ImplementedBy
import logic.user.impl.StubUserManager
import model.users.User
@ImplementedBy(classOf[StubUserManager])
trait UserManager {
def addUser(name: String, password: String): Boolean
def authenticate(name: String, password: String): Option[User]
def userExists(name: String): Option[User]
def authenticate(name: String, password: String): Boolean
def userExists(name: String): Boolean
def removeUser(name: String): Boolean
}