mirror of
https://github.com/discourse/discourse.git
synced 2025-06-05 08:44:40 +08:00
FIX: creating watched words...
... wasn't working because it wasn't storing the proper "action" value. Issue was that we were using the "action" parameter which is being used by Rails to determine which controller action to call. We need to use the "action_key" parameter instead.
This commit is contained in:
@ -14,7 +14,7 @@ class Admin::WatchedWordsController < Admin::StaffController
|
||||
|
||||
def create
|
||||
opts = watched_words_params
|
||||
action = opts[:action] || self.class.actions[opts[:action_key].to_sym]
|
||||
action = WatchedWord.actions[opts[:action_key].to_sym]
|
||||
words = opts.delete(:words)
|
||||
|
||||
watched_word_group = WatchedWordGroup.new(action: action)
|
||||
@ -118,6 +118,6 @@ class Admin::WatchedWordsController < Admin::StaffController
|
||||
|
||||
def watched_words_params
|
||||
@watched_words_params ||=
|
||||
params.permit(:id, :replacement, :action, :action_key, :case_sensitive, words: [])
|
||||
params.permit(:id, :replacement, :action_key, :case_sensitive, words: [])
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user