Add logout functionality in controller and datastore access

<UserStory> AUTH003: Logout User </UserStory>

<Changes>
- Added logout() method in ZenvyController and AuthenticationManagementService
- Implemented logout handling in AuthenticationManagementService
</Changes>

<Review>
Smitha Mohan
</Review>
This commit is contained in:
Jissin Sam Mathew
2026-04-06 11:56:47 +05:30
parent 8a76a5b6a8
commit 45d00d8964
4 changed files with 18 additions and 1 deletions
@@ -8,6 +8,7 @@ AuthenticationContext ZenvyController::login(const std::string& email, const std
void ZenvyController::logout()
{
m_authenticationManagementService->logout();
}
void ZenvyController::changePassword(const std::string& password) const