Projet

Général

Profil

0001-misc-allow-cubes-to-be-given-a-slug-30858.patch

Frédéric Péters, 24 février 2019 15:14

Télécharger (836 octets)

Voir les différences:

Subject: [PATCH] misc: allow cubes to be given a slug (#30858)

 wcs_olap/feeder.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
wcs_olap/feeder.py
72 72
        self.config = config or {}
73 73
        self.model = {
74 74
            'label': self.config.get('cubes_label', schema),
75
            'name': schema,
75
            'name': self.config.get('cubes_slug', schema),
76 76
            'search_path': [schema, 'public'],
77 77
            'pg_dsn': pg_dsn,
78 78
            'cubes': [],
79
-