After the record is saved, I want to pass a lot of ids to the redirect link. I cannot pass it using the default cookie-based store because it exceeds the size limit. I just want to pass the information through the url. However I am getting the error 400 (Bad Request)
with the following.
redirect_to confirmation_my_records_path(invalid: ['case-1, 'case-2'] updated: ['case-3, 'case-4'] , saved: ['case-5, 'case-6'] )
which translates to:
What other options do I have to pass large amounts of data on redirect?