mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
10 lines
183 B
Ruby
10 lines
183 B
Ruby
require_dependency 'site_serializer'
|
|
|
|
class SiteController < ApplicationController
|
|
|
|
def index
|
|
@site = Site.new(guardian)
|
|
render_serialized(@site, SiteSerializer)
|
|
end
|
|
|
|
end
|