
Adds a panel in the settings dashboard to allow the user to change their email address, and a token handler for that page. Change-Id: I4991fa599f6cfbf65f143e5b2227867df6fb86c3
10 lines
364 B
Python
10 lines
364 B
Python
# The slug of the panel to be added to HORIZON_CONFIG. Required.
|
|
PANEL = 'email'
|
|
# The slug of the dashboard the PANEL associated with. Required.
|
|
PANEL_DASHBOARD = 'settings'
|
|
# The slug of the panel group the PANEL is associated with.
|
|
PANEL_GROUP = 'default'
|
|
|
|
# Python panel class of the PANEL to be added.
|
|
ADD_PANEL = 'adjutant_ui.content.email.panel.EmailPanel'
|