LoginSignup
5
3

More than 5 years have passed since last update.

【Rails】routes.rbでのasオプション

Last updated at Posted at 2019-01-05

メモ用。

routes.rbファイルでasオプションをつけると、名前を指定することができる。

config/routes.rb
 get 'exit', to: 'sessions#destroy', as: :logout 

名前付きヘルパーとしてlogout_pathlogout_urlが作成される。
logout_pathを呼び出すと/exitが返される。

5
3
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
5
3