mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
383b8ffbf0
Summary: This adds a `user:delete` target to the `cli.sh` tool. The desired user will be deleted from our database, from sendgrid, and from cognito. There is code for scrubbing the user from team sites, but it isn't yet activated, I'm leaving finalizing and writing tests for it for follow-up. Test Plan: tested manually Reviewers: dsagal Reviewed By: dsagal Differential Revision: https://phab.getgrist.com/D3043
6 lines
176 B
TypeScript
6 lines
176 B
TypeScript
export interface INotifier {
|
|
deleteUser(userId: number): Promise<void>;
|
|
// for test purposes, check if any notifications are in progress
|
|
readonly testPending: boolean;
|
|
}
|