Skip to content

Person Custom Fields for files

Cherese Eriepa requested to merge person-cf-file into master

This PR adds a new custom field type on Person profiles (group and admin) to support files:

Examples:

customFields: [
  {
    [timestampKey]: {
      type: document|video|audio|photo,
      blob: Blob|HyperBlob
    }
  }
]

And for multiple:

customFields: [
  {
    [timestampKey]: [
      {
        type: document|video|audio|photo,
        blob: Blob|HyperBlob
      },
      {
        type: document|video|audio|photo,
        blob: Blob|HyperBlob
      }
    ]
  }
]
Edited by Cherese Eriepa

Merge request reports