mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 07:26:17 +08:00
13 lines
186 B
Ruby
13 lines
186 B
Ruby
|
class WebHookGroupSerializer < GroupShowSerializer
|
||
|
|
||
|
%i{
|
||
|
is_group_user
|
||
|
is_group_owner
|
||
|
}.each do |attr|
|
||
|
define_method("include_#{attr}?") do
|
||
|
false
|
||
|
end
|
||
|
end
|
||
|
|
||
|
end
|