mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 19:37:55 +08:00
8 lines
187 B
Ruby
8 lines
187 B
Ruby
class BasicGroupUserSerializer < ApplicationSerializer
|
|
attributes :group_id, :user_id, :notification_level, :owner
|
|
|
|
def include_owner?
|
|
object.user_id == scope&.user&.id
|
|
end
|
|
end
|