Allow our rails app to also be accessed as an API. The Rails respond_to method would be a good thing to look at for doing this, for those unfamiliar with Rails who want to contribute.
noting, just for the record, that we only want to expose getter methods to the API! We want other people to be able to use our assembled data, but we don't want to let other people change or delete data :)
Allow our rails app to also be accessed as an API. The Rails respond_to method would be a good thing to look at for doing this, for those unfamiliar with Rails who want to contribute.