discourse/app/controllers/tos_controller.rb
2013-02-13 00:35:18 -08:00

12 lines
250 B
Ruby

class TosController < ApplicationController
skip_before_filter :check_xhr
def index
@company_shortname = 'CDCK'
@company_fullname = 'Civilized Discourse Construction Kit, Inc.'
@company_domain = 'discourse.org'
render
end
end