def _get_dimensions_name()

in app/marketplace.py [0:0]


    def _get_dimensions_name(self):
        """ Returns a list with the names of all dimensions """
        dimensions = self._dimensions_table.scan()["Items"]
        result = []
        for d in dimensions:
            result += [d[self.NAME]]
        return result