diaspora/app/controllers/help_controller.rb
2015-02-26 18:06:39 +01:00

8 lines
No EOL
252 B
Ruby

class HelpController < ApplicationController
before_filter -> { @css_framework = :bootstrap }
layout -> (c) { request.format == :mobile ? "application" : "with_header_with_footer" }
def faq
gon.chatEnabled = AppConfig.chat.enabled?
end
end