mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 09:36:19 -05:00
Added endpoint for site JSON
Removed unneeded code
This commit is contained in:
parent
70c50d321a
commit
739c9688ae
2 changed files with 12 additions and 0 deletions
10
app/controllers/site_controller.rb
Normal file
10
app/controllers/site_controller.rb
Normal file
|
@ -0,0 +1,10 @@
|
|||
require_dependency 'site_serializer'
|
||||
|
||||
class SiteController < ApplicationController
|
||||
|
||||
def index
|
||||
@site = Site.new(guardian)
|
||||
render_serialized(@site, SiteSerializer)
|
||||
end
|
||||
|
||||
end
|
|
@ -14,6 +14,8 @@ Discourse::Application.routes.draw do
|
|||
match "/404", to: "exceptions#not_found", via: [:get, :post]
|
||||
|
||||
mount Sidekiq::Web => "/sidekiq", constraints: AdminConstraint.new
|
||||
|
||||
get "site" => "site#index"
|
||||
|
||||
resources :forums
|
||||
get "srv/status" => "forums#status"
|
||||
|
|
Loading…
Reference in a new issue