mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-02 17:57:36 +08:00
This PR adds a theme modifier and route so that custom themes can opt to show their own homepage. See PR description for example usage.
7 lines
136 B
Ruby
7 lines
136 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CustomHomepageController < ApplicationController
|
|
def index
|
|
render "default/custom"
|
|
end
|
|
end
|