So I've got a signup form and part of it is billing/credit card info. That info is all stored and processed by a third party app and so the data isn't stored in our database.
So how can I still run the items through the validates_ methods in Rails? (validates_presence_of
, validates_length_of
, etc etc)
Or am I going about validation in the wrong place for those items?