mirror of
https://github.com/discourse/discourse.git
synced 2025-02-17 16:55:08 +00:00
12 lines
250 B
Ruby
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 |