Removed session parameters from auth services

This commit is contained in:
emeric
2021-10-03 14:35:25 +02:00
parent cbc137529b
commit 617139c2f4
25 changed files with 135 additions and 121 deletions
@@ -161,7 +161,7 @@ namespace Auth
};
bool
PAMPasswordService::checkUserPassword(Database::Session& /*session*/, std::string_view loginName, std::string_view password)
PAMPasswordService::checkUserPassword(std::string_view loginName, std::string_view password)
{
try
{
@@ -193,7 +193,7 @@ namespace Auth
}
void
PAMPasswordService::setPassword(Database::Session&, Database::UserId, std::string_view)
PAMPasswordService::setPassword(Database::UserId, std::string_view)
{
throw NotImplementedException {};
}