6
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Engine の一部の route を変える

Last updated at Posted at 2023-06-07

Engine を使う場合がある

  • 特定のgem にbundle されているなどで,Engine をmount することがある
  • 例えば特定のパスを打ち消したい(上書きしたい)
    • Engine 側をパッチできればいいが,何らかの理由によってやらないことを選択した

Routes

config/routes.rb
mount Blorgh::Engine, at: "/blog"

で,/blog/about みたいな,パスが刺さっているとして,
そこは別のページにしたいとかいう要望があったとする.

上書きする

config/routes.rb
get "/blog/about" => 'something#action_name'
mount Blorgh::Engine, at: "/blog"

より上に書くと,上書きできていそう.

Refs

6
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?