Registration on the form that is repeated every month

1

I'm developing an Rails app for controlling expenses and personal revenue. I wanted the form, when registering an expense, the user to mark a checkbox (it appears in the expense table as repeat: boolean) and then this expense would auto-check every month on that same date. How do I do this?

    
asked by anonymous 22.09.2017 / 19:00

2 answers

2

I've never implemented anything like this but this gem seems to be heavily used.

Link to article and video on how to use gorails

I hope I have helped.

    
26.09.2017 / 05:58
1

You can use Active Job available in Rails.

link

    
23.09.2017 / 01:50