mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-01 15:59:24 +08:00
7 lines
250 B
Ruby
7 lines
250 B
Ruby
# frozen_string_literal: true
|
|
|
|
AdPlugin::Engine.routes.draw do
|
|
root to: "house_ads#index"
|
|
resources :house_creatives, except: %i[new edit], controller: "house_ads"
|
|
resources :house_settings, only: [:update], controller: "house_ad_settings"
|
|
end
|