mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 10:20:58 -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
|