missing defaults added to fixedCollection

This commit is contained in:
Rupenieks 2020-05-25 09:38:10 +02:00
parent bb2f1ecd00
commit b600e5b094
2 changed files with 3 additions and 1 deletions

View file

@ -185,7 +185,8 @@ export const streamFields = [
{
displayName: 'Principals',
name: 'principals',
type: 'fixedCollection',
type: 'fixedCollection',
default: '',
description: 'A list of email addresses of the users that will be subscribed/unsubscribed to the streams specified in the subscriptions argument. If not provided, then the requesting user/bot is subscribed.',
typeOptions: {
multipleValues: true,

View file

@ -237,6 +237,7 @@ export const userFields = [
displayName: 'Profile Data',
name: 'profileData',
type: 'fixedCollection',
default: '',
description: 'A dictionary containing the to be updated custom profile field data for the user.',
typeOptions: {
multipleValues: true,