Re-enable plugins ability to send local_settings

In the past the plugin interface was renamed but the context was
not updated meaning that subordinates could no longer send plugin
data. This change fixes the relation name the context uses and
updates the Newton template to render these settings (earlier
templates already do this)

Closes-Bug: 1578824

Change-Id: I57e4e526019bc91bdf1df77c60da33ae108e0b49
This commit is contained in:
Liam Young 2017-02-09 11:20:07 +00:00
parent d98547f141
commit 0eab424884
2 changed files with 2 additions and 1 deletions

View File

@ -272,7 +272,7 @@ class LocalSettingsContext(OSContextGenerator):
relations = []
for rid in relation_ids("plugin"):
for rid in relation_ids("dashboard-plugin"):
try:
unit = related_units(rid)[0]
except IndexError:

View File

@ -973,3 +973,4 @@ ALLOWED_PRIVATE_SUBNET_CIDR = {'ipv4': [], 'ipv6': []}
#USER_TABLE_EXTRA_INFO = {
# 'phone_num': _('Phone Number'),
#}
{{ settings|join('\n\n') }}