mirror of
https://github.com/discourse/discourse.git
synced 2025-05-21 18:12:32 +08:00
First stab at About page
This commit is contained in:
8
app/controllers/about_controller.rb
Normal file
8
app/controllers/about_controller.rb
Normal file
@ -0,0 +1,8 @@
|
||||
class AboutController < ApplicationController
|
||||
skip_before_filter :check_xhr, only: [:show]
|
||||
|
||||
def index
|
||||
@about = About.new
|
||||
render_serialized(@about, AboutSerializer)
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user