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