Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


NameSourceMandatoryTypeSpecial FormatDescription
uIdQueryYESStringN/Athe user id
configBodyYESObjectN/A



NameSourceMandatoryTypeSpecial FormatDescription
keysBodyNOObjectN/A
packagesBodyNOObjectN/AAdditional Properties: acl (Object)
allowedTenantsBodyNOObject


NameSourceMandatoryTypeSpecial FormatDescription
tenantBodyNOObject

Properties:  

  • id (String)
  • code (String)
  • pin (Object)
    • code (String)
    • allowed (Boolean)
groupsBodyNOArray


example config:

Code Block
languageactionscript3
titleconfig
 config: {
        packages: {},
        keys: {},
        allowedTenants: [
                {"tenant": {
                        id: "THYME_tID",
                        code: "THYME_CODE",
                        pin: {"code": "1235", "allowed": true}
                        },
                groups: ["waiter"]
                },
                {tenant: {
                        id: "ELVIRA_tID",
                        code: "ELVIRA_CODE"
                        },
                groups: ["manager]
                }
        ]
    },


...