(core) Delete my account button

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
This commit is contained in:
Jarosław Sadziński
2023-09-26 10:09:06 +02:00
parent e033889b6a
commit cce185956c
19 changed files with 205 additions and 34 deletions

View File

@@ -0,0 +1,11 @@
import {FullUser} from 'app/common/UserAPI';
import {Disposable} from 'grainjs';
export class DeleteAccountDialog extends Disposable {
constructor(appModel: FullUser) {
super();
}
public buildDom() {
return null;
}
}