mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
Compare commits
22 commits
0e9fc17013
...
6f13c94e6f
Author | SHA1 | Date | |
---|---|---|---|
|
6f13c94e6f | ||
|
9aa8e29758 | ||
|
f9f558da7f | ||
|
50bcdf5371 | ||
|
8a705c479e | ||
|
e133d908f1 | ||
|
ade3a65676 | ||
|
6b43a08902 | ||
|
6486f58ef4 | ||
|
8a5595eb8d | ||
|
519ec1c9da | ||
|
058a3d8467 | ||
|
41708456a1 | ||
|
7066147622 | ||
|
169e524f46 | ||
|
e29478ae69 | ||
|
d9f7780598 | ||
|
a8ccfd227b | ||
|
3f4c231186 | ||
|
db9f834f47 | ||
|
7e04f35373 | ||
|
c66942aa0a |
20 changed files with 43 additions and 25 deletions
|
@ -26,7 +26,7 @@ class Api::V1::Admin::AccountActionsController < Api::BaseController
|
|||
end
|
||||
|
||||
def resource_params
|
||||
params.permit(
|
||||
params_slice(
|
||||
:type,
|
||||
:report_id,
|
||||
:warning_preset_id,
|
||||
|
|
|
@ -108,7 +108,7 @@ class Api::V1::Admin::AccountsController < Api::BaseController
|
|||
end
|
||||
|
||||
def filter_params
|
||||
params.permit(*FILTER_PARAMS)
|
||||
params_slice(*FILTER_PARAMS)
|
||||
end
|
||||
|
||||
def translated_filter_params
|
||||
|
|
|
@ -67,7 +67,7 @@ class Api::V1::Admin::DomainBlocksController < Api::BaseController
|
|||
end
|
||||
|
||||
def domain_block_params
|
||||
params.permit(:severity, :reject_media, :reject_reports, :private_comment, :public_comment, :obfuscate)
|
||||
params_slice(:severity, :reject_media, :reject_reports, :private_comment, :public_comment, :obfuscate)
|
||||
end
|
||||
|
||||
def next_path
|
||||
|
|
|
@ -56,7 +56,7 @@ class Api::V1::Admin::IpBlocksController < Api::BaseController
|
|||
end
|
||||
|
||||
def resource_params
|
||||
params.permit(:ip, :severity, :comment, :expires_in)
|
||||
params_slice(:ip, :severity, :comment, :expires_in)
|
||||
end
|
||||
|
||||
def next_path
|
||||
|
|
|
@ -82,11 +82,13 @@ class Api::V1::Admin::ReportsController < Api::BaseController
|
|||
end
|
||||
|
||||
def report_params
|
||||
params.permit(:category, rule_ids: [])
|
||||
params
|
||||
.slice(:category, :rule_ids)
|
||||
.permit(:category, rule_ids: [])
|
||||
end
|
||||
|
||||
def filter_params
|
||||
params.permit(*FILTER_PARAMS)
|
||||
params_slice(*FILTER_PARAMS)
|
||||
end
|
||||
|
||||
def next_path
|
||||
|
|
|
@ -20,10 +20,12 @@ class Api::V1::AppsController < Api::BaseController
|
|||
end
|
||||
|
||||
def app_scopes_or_default
|
||||
app_params[:scopes] || Doorkeeper.configuration.default_scopes
|
||||
Array(app_params[:scopes]).first || Doorkeeper.configuration.default_scopes
|
||||
end
|
||||
|
||||
def app_params
|
||||
params.permit(:client_name, :scopes, :website, :redirect_uris, redirect_uris: [])
|
||||
params
|
||||
.slice(:client_name, :scopes, :website, :redirect_uris, :redirect_uris)
|
||||
.permit(:client_name, :scopes, :website, :redirect_uris, redirect_uris: [], scopes: [])
|
||||
end
|
||||
end
|
||||
|
|
|
@ -52,7 +52,9 @@ class Api::V1::FiltersController < Api::BaseController
|
|||
end
|
||||
|
||||
def resource_params
|
||||
params.permit(:phrase, :expires_in, :irreversible, :whole_word, context: [])
|
||||
params
|
||||
.slice(:phrase, :expires_in, :irreversible, :whole_word, :context)
|
||||
.permit(:phrase, :expires_in, :irreversible, :whole_word, context: [])
|
||||
end
|
||||
|
||||
def filter_params
|
||||
|
|
|
@ -52,7 +52,7 @@ class Api::V1::Lists::AccountsController < Api::BaseController
|
|||
end
|
||||
|
||||
def resource_params
|
||||
params.permit(account_ids: [])
|
||||
params.slice(:account_ids).permit(account_ids: [])
|
||||
end
|
||||
|
||||
def next_path
|
||||
|
|
|
@ -42,6 +42,6 @@ class Api::V1::ListsController < Api::BaseController
|
|||
end
|
||||
|
||||
def list_params
|
||||
params.permit(:title, :replies_policy, :exclusive)
|
||||
params_slice(:title, :replies_policy, :exclusive)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -40,11 +40,11 @@ class Api::V1::MediaController < Api::BaseController
|
|||
end
|
||||
|
||||
def media_attachment_params
|
||||
params.permit(:file, :thumbnail, :description, :focus)
|
||||
params_slice(:file, :thumbnail, :description, :focus)
|
||||
end
|
||||
|
||||
def updateable_media_attachment_params
|
||||
params.permit(:thumbnail, :description, :focus)
|
||||
params_slice(:thumbnail, :description, :focus)
|
||||
end
|
||||
|
||||
def file_type_error
|
||||
|
|
|
@ -85,7 +85,9 @@ class Api::V1::NotificationsController < Api::BaseController
|
|||
end
|
||||
|
||||
def browserable_params
|
||||
params.permit(:account_id, :include_filtered, types: [], exclude_types: [])
|
||||
params
|
||||
.slice(:account_id, :include_filtered, :types, :exclude_types)
|
||||
.permit(:account_id, :include_filtered, types: [], exclude_types: [])
|
||||
end
|
||||
|
||||
def pagination_params(core_params)
|
||||
|
|
|
@ -23,6 +23,8 @@ class Api::V1::ReportsController < Api::BaseController
|
|||
end
|
||||
|
||||
def report_params
|
||||
params.permit(:account_id, :comment, :category, :forward, forward_to_domains: [], status_ids: [], rule_ids: [])
|
||||
params
|
||||
.slice(:account_id, :comment, :category, :forward, :forward_to_domains, :status_ids, :rule_ids)
|
||||
.permit(:account_id, :comment, :category, :forward, :rule_ids, forward_to_domains: [], status_ids: [], rule_ids: [])
|
||||
end
|
||||
end
|
||||
|
|
|
@ -50,6 +50,6 @@ class Api::V1::Statuses::ReblogsController < Api::V1::Statuses::BaseController
|
|||
end
|
||||
|
||||
def reblog_params
|
||||
params.permit(:visibility)
|
||||
params_slice(:visibility)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -12,6 +12,7 @@ class Api::V2::Admin::AccountsController < Api::V1::Admin::AccountsController
|
|||
ip
|
||||
invited_by
|
||||
role_ids
|
||||
role_ids: []
|
||||
).freeze
|
||||
|
||||
PAGINATION_PARAMS = (%i(limit) + FILTER_PARAMS).freeze
|
||||
|
@ -39,7 +40,7 @@ class Api::V2::Admin::AccountsController < Api::V1::Admin::AccountsController
|
|||
end
|
||||
|
||||
def filter_params
|
||||
params.permit(*FILTER_PARAMS, role_ids: [])
|
||||
params_slice(*FILTER_PARAMS)
|
||||
end
|
||||
|
||||
def pagination_params(core_params)
|
||||
|
|
|
@ -45,6 +45,6 @@ class Api::V2::Filters::KeywordsController < Api::BaseController
|
|||
end
|
||||
|
||||
def resource_params
|
||||
params.permit(:keyword, :whole_word)
|
||||
params_slice(:keyword, :whole_word)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -39,6 +39,6 @@ class Api::V2::Filters::StatusesController < Api::BaseController
|
|||
end
|
||||
|
||||
def resource_params
|
||||
params.permit(:status_id)
|
||||
params_slice(:status_id)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -43,6 +43,8 @@ class Api::V2::FiltersController < Api::BaseController
|
|||
end
|
||||
|
||||
def resource_params
|
||||
params.permit(:title, :expires_in, :filter_action, context: [], keywords_attributes: [:id, :keyword, :whole_word, :_destroy])
|
||||
params
|
||||
.slice(:title, :expires_in, :filter_action, :context, :keywords_attributes)
|
||||
.permit(:title, :expires_in, :filter_action, context: [], keywords_attributes: [:id, :keyword, :whole_word, :_destroy])
|
||||
end
|
||||
end
|
||||
|
|
|
@ -63,6 +63,6 @@ class Api::V2::SearchController < Api::BaseController
|
|||
end
|
||||
|
||||
def search_params
|
||||
params.permit(:type, :offset, :min_id, :max_id, :account_id, :following)
|
||||
params.permit(:q, :resolve, :type, :offset, :min_id, :max_id, :account_id, :following)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -125,10 +125,15 @@ class Api::V2Alpha::NotificationsController < Api::BaseController
|
|||
end
|
||||
|
||||
def browserable_params
|
||||
params.permit(:include_filtered, types: [], exclude_types: [])
|
||||
params
|
||||
.slice(:include_filtered, :types, :exclude_types)
|
||||
.permit(:include_filtered, types: [], exclude_types: [])
|
||||
end
|
||||
|
||||
def pagination_params(core_params)
|
||||
params.slice(:limit, :types, :exclude_types, :include_filtered).permit(:limit, :include_filtered, types: [], exclude_types: []).merge(core_params)
|
||||
params
|
||||
.slice(:limit, :types, :exclude_types, :include_filtered)
|
||||
.permit(:limit, :include_filtered, types: [], exclude_types: [])
|
||||
.merge(core_params)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -15,7 +15,7 @@ module Admin::FilterHelper
|
|||
AnnouncementFilter::KEYS,
|
||||
Admin::ActionLogFilter::KEYS,
|
||||
Admin::StatusFilter::KEYS,
|
||||
].flatten.freeze
|
||||
].flatten.uniq.freeze
|
||||
|
||||
def filter_link_to(text, link_to_params, link_class_params = link_to_params)
|
||||
new_url = filtered_url_for(link_to_params)
|
||||
|
@ -48,6 +48,6 @@ module Admin::FilterHelper
|
|||
end
|
||||
|
||||
def controller_request_params
|
||||
params.permit(FILTERS)
|
||||
params.slice(FILTERS).permit(FILTERS)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue