I wrote a filter to return jsonp from a controller action based on some headers and what-not. Problem is, the IDE doesn't know this and it's warning me that I need to create a view or whatever. It's not a big deal, but I'm tired of explaining it to FNGs.
Note: I'm swapping the view out to "Shared/Format/" + format.cshtml, depending on the headers and other factors to use a view to render the callout function and some custom json rendering. The filter makes all that happen, but I still want to return an ActionResult so I can use the view to do some last-minute formatting.
How do I make "View"
stop being red?