Announcement

Collapse
No announcement yet.

Unifying adminPanel.json across modules

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Unifying adminPanel.json across modules

    I'm trying to add an extra option to the Settings -> Email menu in adminPanel.json for a custom module, so I've created the following file:

    application/Espo/Modules/MailChimp/Resources/metadata/app/adminPanel.json

    with the following:
    Code:
    {
       email:{
          label:Email,
          items:[
             {
                url:#Admin/mailchimp,
                label:MailChimp,
                description:mailchimp
             }
          ]
       }
    }
    This works only in part, the first item (Outbound Emails) is removed from the list during the unification.

  • #2
    This is not a bug. We will add the ability to append to arrays in 2.6 or 2.7.

    Comment


    • #3
      Good stuff

      Comment

      Working...
      X