mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:07:53 +08:00
11 lines
183 B
Ruby
11 lines
183 B
Ruby
require_dependency 'site_serializer'
|
|
|
|
class SiteController < ApplicationController
|
|
|
|
def index
|
|
@site = Site.new(guardian)
|
|
render_serialized(@site, SiteSerializer)
|
|
end
|
|
|
|
end
|