mirror of
https://github.com/discourse/discourse.git
synced 2026-03-03 23:54:20 +08:00
7 lines
208 B
Ruby
7 lines
208 B
Ruby
# frozen_string_literal: true
|
|
|
|
class WebHookCategorySerializer < CategorySerializer
|
|
%i[can_edit notification_level available_groups].each do |attr|
|
|
define_method("include_#{attr}?") { false }
|
|
end
|
|
end
|