This website requires JavaScript.
Explore
Help
Register
Sign in
Docker
/
Maybe
Watch
1
Star
0
Fork
You've already forked Maybe
0
mirror of
https://github.com/maybe-finance/maybe.git
synced
2025-07-24 07:39:39 +02:00
Code
Issues
Releases
Activity
Actions
1
19cc63c8f4
Maybe
/
app
/
jobs
/
user_purge_job.rb
8 lines
107 B
Ruby
Raw
Normal View
History
Unescape
Escape
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
2024-04-30 16:40:31 +01:00
class
UserPurgeJob
<
ApplicationJob
Use Redis for ActiveJob and ActionCable (#2004) * Use Redis for ActiveJob and ActionCable * Fix alwaysApply setting * Update queue names and weights * Tweak weights * Update job queues * Update docker setup guide * Remove deprecated upgrade columns from users table * Refactor Redis configuration for Sidekiq and caching in production environment * Add Sidekiq Sentry monitoring * queue naming fix * Clean up schema
2025-03-19 12:36:16 -04:00
queue_as
:low_priority
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
2024-04-30 16:40:31 +01:00
def
perform
(
user
)
user
.
purge
end
end
Copy permalink