mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:11:08 -06:00
DEV: restore custom route for custom homepage (#29343)
This commit is contained in:
parent
b2167f7651
commit
cbdab52056
@ -20,4 +20,9 @@ class AuthProviderSerializer < ApplicationSerializer
|
||||
return SiteSetting.get(object.pretty_name_setting) if object.pretty_name_setting
|
||||
object.pretty_name
|
||||
end
|
||||
|
||||
def custom_url
|
||||
# ensures that the "/custom" route doesn't trigger the magic custom_url helper in ActionDispatch
|
||||
object.custom_url
|
||||
end
|
||||
end
|
||||
|
@ -1615,6 +1615,8 @@ Discourse::Application.routes.draw do
|
||||
constraints: HomePageConstraint.new("custom"),
|
||||
as: "custom_index"
|
||||
|
||||
get "/custom" => "custom_homepage#index"
|
||||
|
||||
get "/user-api-key/new" => "user_api_keys#new"
|
||||
post "/user-api-key" => "user_api_keys#create"
|
||||
post "/user-api-key/revoke" => "user_api_keys#revoke"
|
||||
|
Loading…
Reference in New Issue
Block a user