2011-03-27 16:56:15 -04:00
|
|
|
class SubdomainsController < ApplicationController
|
|
|
|
|
2014-02-17 12:05:39 -05:00
|
|
|
# show a blank page if subdomain
|
|
|
|
def index
|
|
|
|
render :text => ''
|
|
|
|
end
|
2011-03-27 16:56:15 -04:00
|
|
|
|
2014-02-17 12:05:39 -05:00
|
|
|
# output the file crossdomain.xml.erb
|
|
|
|
def crossdomain
|
|
|
|
respond_to do |format|
|
|
|
|
format.xml
|
|
|
|
end
|
|
|
|
end
|
2011-03-27 16:56:15 -04:00
|
|
|
|
|
|
|
end
|