diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-08-02 02:30:35 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-08-02 02:30:35 -0500 |
commit | 65c42e5398304273b54916cc90441ade23317d85 (patch) | |
tree | 466c63aa34c1680c49e66a3c7b0961297f1d8929 /app/controllers/api | |
parent | 3813810cac8eb138ed1819058d122503628d6cba (diff) |
filters now have options to separately match post text, content warnings/titles, & hashtags + option to filter threads containing a matching post
Diffstat (limited to 'app/controllers/api')
-rw-r--r-- | app/controllers/api/v1/filters_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/api/v1/filters_controller.rb b/app/controllers/api/v1/filters_controller.rb index 496964394..48177f41a 100644 --- a/app/controllers/api/v1/filters_controller.rb +++ b/app/controllers/api/v1/filters_controller.rb @@ -43,6 +43,6 @@ class Api::V1::FiltersController < Api::BaseController end def resource_params - params.permit(:phrase, :expires_in, :irreversible, :whole_word, :exclude_media, :media_only, context: []) + params.permit(:phrase, :expires_in, :irreversible, :whole_word, :exclude_media, :media_only, :status_text, :spoiler, :tags, context: []) end end |