Adjust action name for theme resource

following the general convention of using `destroy` now instead of `delete`
This commit is contained in:
Andreas Nedbal 2022-06-26 13:36:30 +02:00 committed by Karina Kwiatek
parent a00910bef4
commit f9bb2a2271
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ Rails.application.routes.draw do
namespace :settings do namespace :settings do
get :theme, to: redirect('/settings/theme/edit') get :theme, to: redirect('/settings/theme/edit')
resource :theme, controller: :theme, only: %i[edit update delete] resource :theme, controller: :theme, only: %i[edit update destroy]
end end
resolve('Theme') { [:settings_theme] } # to make link_to/form_for work nicely when passing a `Theme` object to it, see also: https://api.rubyonrails.org/v6.1.5.1/classes/ActionDispatch/Routing/Mapper/CustomUrls.html#method-i-resolve resolve('Theme') { [:settings_theme] } # to make link_to/form_for work nicely when passing a `Theme` object to it, see also: https://api.rubyonrails.org/v6.1.5.1/classes/ActionDispatch/Routing/Mapper/CustomUrls.html#method-i-resolve