summaryrefslogtreecommitdiff
path: root/app/serializers/group_link/group_link_entity.rb
blob: 12349320b6fc709ebaade7e0f05762230d22b08f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# frozen_string_literal: true

module GroupLink
  class GroupLinkEntity < Grape::Entity
    include RequestAwareEntity

    expose :id
    expose :created_at
    expose :expires_at do |group_link|
      group_link.expires_at&.to_time
    end

    expose :access_level do
      expose :human_access, as: :string_value
      expose :group_access, as: :integer_value
    end

    expose :valid_roles do |group_link|
      group_link.class.access_options
    end

    expose :shared_with_group do
      expose :avatar_url do |group_link|
        group_link.shared_with_group.avatar_url(only_path: false, size: Member::AVATAR_SIZE)
      end

      expose :web_url do |group_link|
        group_link.shared_with_group.web_url
      end

      expose :shared_with_group, merge: true, using: GroupBasicEntity
    end
  end
end