mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
cce185956c
Summary: Adding new "Delete my account" button to the profile page that allows users to remove completely their accounts as long as they don't own any team site. Test Plan: Added Reviewers: georgegevoian, paulfitz Reviewed By: georgegevoian, paulfitz Subscribers: paulfitz Differential Revision: https://phab.getgrist.com/D4037
12 lines
234 B
TypeScript
12 lines
234 B
TypeScript
import {FullUser} from 'app/common/UserAPI';
|
|
import {Disposable} from 'grainjs';
|
|
|
|
export class DeleteAccountDialog extends Disposable {
|
|
constructor(appModel: FullUser) {
|
|
super();
|
|
}
|
|
public buildDom() {
|
|
return null;
|
|
}
|
|
}
|