|
|
@@ -538,7 +538,7 @@ class ConfigContextModel(models.Model):
|
|
|
|
|
|
# Compile all config data, overwriting lower-weight values with higher-weight values where a collision occurs
|
|
|
data = OrderedDict()
|
|
|
- for context in ConfigContext.objects.get_for_object(self):
|
|
|
+ for context in ConfigContext.objects.unrestricted().get_for_object(self):
|
|
|
data = deepmerge(data, context.data)
|
|
|
|
|
|
# If the object has local config context data defined, merge it last
|