1c22c14f32
<UserStory> AUTH002 : Reset Initial Password </UserStory>
<Changes>
- Added logic for resetting initial password
- Code Cleanup
</Changes>
<Review>
Smitha Mohan
</Review>
18 lines
433 B
C++
18 lines
433 B
C++
#include "ZenvyController.h"
|
|
|
|
//Authentication
|
|
AuthenticationContext ZenvyController::login(const std::string& email, const std::string& password)
|
|
{
|
|
return m_authenticationManagementService->login(email, password);
|
|
}
|
|
|
|
void ZenvyController::logout()
|
|
{
|
|
m_authenticationManagementService->logout();
|
|
}
|
|
|
|
void ZenvyController::changePassword(const std::string& password)
|
|
{
|
|
m_authenticationManagementService->changePassword(password);
|
|
}
|