9 lines
138 B
Ruby
9 lines
138 B
Ruby
class InfoController < ApplicationController
|
|
|
|
def about
|
|
respond_to do |format|
|
|
format.html
|
|
format.xml
|
|
end
|
|
end
|
|
end
|