mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
13 lines
187 B
Ruby
13 lines
187 B
Ruby
|
|
class WebHookCategorySerializer < CategorySerializer
|
||
|
|
|
||
|
|
%i{
|
||
|
|
can_edit
|
||
|
|
notification_level
|
||
|
|
}.each do |attr|
|
||
|
|
define_method("include_#{attr}?") do
|
||
|
|
false
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
end
|