Skip to main content

Admin Settings

||

An Admin Settings extension lets administrators configure global settings for your app directly in the Admin App.

Declare in Manifest

Add the adminSettings property to your manifest.json:

{
"adminSettings": [
{
"extensionKey": "my-admin-settings",
"name": "Setup My App",
"description": "Admin settings for My App",
"resources": {
"folder": "my-admin-settings"
}
}
]
}

Required Files

The source code for your Admin Settings extension lives in the resources folder you defined in the manifest. The folder contains all of your extension's files (JS, CSS, images, etc.), including one required file:

  • index.html - The entry point of your Admin Settings extension. Showpad renders it inside an iframe in the Admin App.

Next Steps

Was this page helpful?