Add ability to deactivate a user when they leave the project.
Add a inactive column to the Account object. Use the inactive status to disable the user's web and ssh logins, sending emails to the user on behalf of gerrit, adding the user as a reviewer or to a group, and making the user appear in the "add reviewer" and group "add member" auto completion boxes. Bug: issue 503 Change-Id: Ib002788ebf8204dfea608d9f5ac3a5cdff20f817
This commit is contained in:
@@ -28,7 +28,7 @@ public interface SuggestService extends RemoteJsonService {
|
||||
void suggestProjectNameKey(String query, int limit,
|
||||
AsyncCallback<List<Project.NameKey>> callback);
|
||||
|
||||
void suggestAccount(String query, int limit,
|
||||
void suggestAccount(String query, Boolean enabled, int limit,
|
||||
AsyncCallback<List<AccountInfo>> callback);
|
||||
|
||||
void suggestAccountGroup(String query, int limit,
|
||||
|
||||
Reference in New Issue
Block a user