人がメールでクリックできる購読解除リンクを生成しようとしています。私のルートは次のようになります。
match "/unsubscribe/:email/:token" => "mailing_list_recipients#destroy", :as => :unsubscribe
を実行するrake routes
と、次のようになります。
unsubscribe GET /unsubscribe/:email/:token(.:format) mailing_list_recipients#destroy
私もできる:
unsubscribe_url(mailing_list_recipient.email, mailing_list_recipient.token)
出力:
http://localhost:3000/unsubscribe/hello@hello.com/f99e3af9bd959c6c8f3882a6e10e354e
ただし、この URL にアクセスしようとすると、次のエラーが表示されます。
No route matches [GET] "/unsubscribe/schroppl@gmail.com/6458f6a714d81a9cdd1cd1133dd65f0d"
私は何が欠けていますか?