-
-
Save j3ck/9e55bc8c4bba137f0abe3c5fb0913666 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#routes.rb | |
Rails.application.routes.draw do | |
get 'fresh_updates', to: 'home#fresh_updates', constraints: { format: :xml } | |
end | |
#home_controller.rb | |
class HomeController < ApplicationController | |
def fresh_updates | |
updater = Updater.new | |
updater.call # updates fresh_updates file | |
if updater.success? | |
respond_to do |format| | |
format.xml { render file: 'public/fresh_updates.xml', layout: false } | |
end | |
else | |
render status: :not_found | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment