photogriffy.net/app/controllers/info_controller.rb

10 lines
138 B
Ruby
Raw Normal View History

class InfoController < ApplicationController
def about
respond_to do |format|
format.html
format.xml
end
end
end