yorkie-team/yorkie

Support Basic Account Action for Admin

krapie opened this issue · 8 comments

What would you like to be added:

The AdminService currently only includes the SignUp and LogIn API endpoints. To enhance the functionality and provide basic account actions for administrators, additional actions such as SignOut and ChangePassword need to be implemented.

service AdminService {
  rpc SignUp(SignUpRequest) returns (SignUpResponse) {}
  rpc LogIn(LogInRequest) returns (LogInResponse) {}

  # Needs to be implemented.
  rpc SignOut(SignOutRequest) returns (SignOutResponse) {}
  rpc ChangePassword(SignOutRequest) returns (SignOutResponse) {}

Why is this needed:

Expanding the basic account actions available through the AdminService will improve the user experience and provide necessary functionality for administrative tasks.