mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
9 lines
186 B
Ruby
9 lines
186 B
Ruby
|
class AboutController < ApplicationController
|
||
|
skip_before_filter :check_xhr, only: [:show]
|
||
|
|
||
|
def index
|
||
|
@about = About.new
|
||
|
render_serialized(@about, AboutSerializer)
|
||
|
end
|
||
|
end
|