Add an Intercom chat widget inside the Wagtail admin
Project description
Add an Intercom widget to your Wagtail admin.
Installing
Install using pip:
$ pip install wagailadminintercom
Add it to your INSTALLED_APPS before wagtail.wagtailadmin:
INSTALLED_APPS = [
# ...
'wagailadminintercom',
'wagtail.wagtailadmin',
# ...
]
Configuring
Add WAGTAILADMIN_INTERCOM_APP_ID and WAGTAILADMIN_INTERCOM_SECRET_KEY settings to your settings file:
WAGTAILADMIN_INTERCOM_APP_ID = 'abc123'
WAGTAILADMIN_INTERCOM_SECRET_KEY = '983th8fj98hgh98dj09gj08g4w'
By default, identity verification is enabled using user IDs. This can be overridden using the WAGTAILADMIN_INTERCOM_IDENTITY_VERIFICATION setting:
WAGTAILADMIN_INTERCOM_IDENTITY_VERIFICATION = 'email'
This setting can take three possible values:
- 'email':
Identity verification using email addresses.
- 'id':
Default. Identity verification via user IDs.
- None:
Disable identity verification.
The users email address is taken from the email attribute on the user model by default. If this is incorrect, it can be overridden using the WAGTAILADMIN_INTERCOM_EMAIL_ATTRIBUTE setting. Set WAGTAILADMIN_INTERCOM_EMAIL_ATTRIBUTE to None to disable sending users emails.
By default, the widget will only appear when DEBUG is False to prevent the widget appearing during development. To force the widget to show or hide itself, set the WAGTAILADMIN_INTERCOM_ENABLED setting:
WAGTAILADMIN_INTERCOM_ENABLED = True
That is it! You should now see the widget appear in the Wagtail admin.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file wagtailadminintercom-0.1.1-py2.py3-none-any.whl
.
File metadata
- Download URL: wagtailadminintercom-0.1.1-py2.py3-none-any.whl
- Upload date:
- Size: 7.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7e0a0f10e48f13af3350da1e5d524d5f5a4492190c288da401bb2654da05e860 |
|
MD5 | f1f7b2c2215f21d08d2ef3013dcc600b |
|
BLAKE2b-256 | 0c510563d3caaae31e3034487c0f0dfe1f0b662f36d9303afcef976a871d736c |