diff --git a/mogan/api/controllers/v1/flavors.py b/mogan/api/controllers/v1/flavors.py index 5198f97d..3af45b67 100644 --- a/mogan/api/controllers/v1/flavors.py +++ b/mogan/api/controllers/v1/flavors.py @@ -108,6 +108,13 @@ class FlavorPatchType(types.JsonPatchType): _api_base = Flavor + @staticmethod + def internal_attrs(): + defaults = types.JsonPatchType.internal_attrs() + return defaults + ['/description', '/resources', + '/resource_traits', + '/resource_aggregates'] + class FlavorCollection(base.APIBase): """API representation of a collection of flavor."""