mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-04 01:34:26 +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
|