I guess this goes to the fundamentals of rails. Is it possible for me to simple have a checkbox and a submit button without it being tied to a model?
I found that most Rails example out there are using form_for
and this needs to be bound to a particular model. Can I just send a boolean parameter to a particular controller without having to be bound to a particular model? I just want to send a boolean value to a controller.
I am having trouble finding examples for this particular format, especially using slim.