mirror of
https://github.com/discourse/discourse.git
synced 2026-08-06 03:07:17 -05:00
8 lines
208 B
Ruby
8 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
|