How to validate in a model, data from a controller
So I have some data that gets pulled from another rails app in a controller lets call it ExampleController and I want to validate it as being there in my model before allowing the wizard to move to its next step and I can't quite figure out how I should be doing it ( I know that getting this data directly from the controller into the model violates MVC I am looking for the best workaround to get my data from the controller ) . The data must come from the controller as the methods for getting it are contained in ApplicationController however I could do this in the Awizard controller if this is