discourse/app/serializers/web_hook_category_serializer.rb

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 07:10:29 -05:00
class WebHookCategorySerializer < CategorySerializer
%i{
can_edit
notification_level
available_groups
2018-03-28 07:10:29 -05:00
}.each do |attr|
define_method("include_#{attr}?") do
false
end
end
end