dwyl / app

Clear your mind. Organise your life. Ignore distractions. Focus on what matters.
http://dwyl.github.io/app/
143 stars 22 forks source link

Google Play App Setup -> Delete Account URL #351

Open nelsonic opened 8 months ago

nelsonic commented 8 months ago

As part #348 specifically https://github.com/dwyl/app/issues/350#issuecomment-1786887331 we need to provide a link that allows people to DELETE their Account:

image

Todo

LuchoTurtle commented 8 months ago

From what I've seen (e.g. https://stackoverflow.com/questions/77051703/google-play-account-deletion-requirement), this endpoint needs to be a web URL. Additionally, it can also be a simple form request page. However, as outlined in this issue, this approach would require some form of verification on the person's part to verify their account authenticity.

nelsonic commented 8 months ago

Indeed. It's just a page with a very basic form:

<h1>Delete My Account</h1>
<p>This action will delete your account, it cannot be undone. Your data will be deleted.</p>
<button>DELETE</button>

Obviously with some TailwindCSS to make it look better. 👌 The action will need to DELETE their account on Auth and then we need a way of cascading that through the App... The URL/page part is the easy bit.