mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-24 15:49:39 +02:00
Add ability to delete Maybe account (#698)
* Build out user deactivation and purging workflows * Add i18n translations for user deletion * Add tests for user deletion * Fix lint issue
This commit is contained in:
parent
55cb1ae5bd
commit
19ee773d9b
15 changed files with 128 additions and 8 deletions
5
db/migrate/20240430111641_add_active_to_users.rb
Normal file
5
db/migrate/20240430111641_add_active_to_users.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class AddActiveToUsers < ActiveRecord::Migration[7.2]
|
||||
def change
|
||||
add_column :users, :active, :boolean, default: true, null: false
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue