This repository has been archived on 2023-03-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
osr-discourse-src/app/controllers/tos_controller.rb
T
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