From 8fd35b31d1882fcf4d2ee1a350be8cd53584508a Mon Sep 17 00:00:00 2001 From: Dylan Ratcliffe Date: Tue, 30 Apr 2024 16:20:44 +0000 Subject: [PATCH] Added comment to clarify admin --- account.proto | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/account.proto b/account.proto index dbc4b24..1cbbde1 100644 --- a/account.proto +++ b/account.proto @@ -32,7 +32,8 @@ service AdminService { rpc CreateAccount(CreateAccountRequest) returns (CreateAccountResponse); // Get the details of a given account rpc GetAccount(AdminGetAccountRequest) returns (GetAccountResponse); - // Deletes an account + // Deletes an account from Overmind. If a user logs in again, they will get + // a completely new account provisioned for them rpc DeleteAccount(AdminDeleteAccountRequest) returns (AdminDeleteAccountResponse); // Deletes a user from Auth0, this does not delete the Overmind account that // they are attached to ad should be used in conjunction with DeleteAccount