discourse/app/serializers/web_hook_category_serialize...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
239 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2018-03-28 08:10:29 -04:00
class WebHookCategorySerializer < CategorySerializer
%i{
can_edit
notification_level
available_groups
2018-03-28 08:10:29 -04:00
}.each do |attr|
define_method("include_#{attr}?") do
false
end
end
end