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-19 13:19:39 +02:00
Code
Issues
Releases
Activity
Actions
1
19cc63c8f4
Maybe
/
app
/
jobs
/
import_job.rb
8 lines
111 B
Ruby
Raw
Normal View
History
Unescape
Escape
CSV Transaction Imports (#708) Introduces a basic CSV import module for bulk-importing account transactions. Changes include: - User can load a CSV - User can configure the column mappings for a CSV - Imported CSV shows invalid cells - User can clean up their data directly in the UI - User can see a preview of the import rows and confirm import - Layout refactor + Import nav stepper - System test stability improvements
2024-05-17 09:09:32 -04:00
class
ImportJob
<
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
:high_priority
CSV Transaction Imports (#708) Introduces a basic CSV import module for bulk-importing account transactions. Changes include: - User can load a CSV - User can configure the column mappings for a CSV - Imported CSV shows invalid cells - User can clean up their data directly in the UI - User can see a preview of the import rows and confirm import - Layout refactor + Import nav stepper - System test stability improvements
2024-05-17 09:09:32 -04:00
def
perform
(
import
)
import
.
publish
end
end
Copy permalink