This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/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