blob: 104729b66684917711438881506bebbaf388dc97 (
plain)
1
2
3
4
5
6
7
8
9
|
# frozen_string_literal: true
class FeatureFlagsClientSerializer < BaseSerializer
entity FeatureFlagsClientEntity
def represent_token(resource, opts = {})
represent(resource, only: [:token])
end
end
|