mirror of
https://github.com/NaN-tic/trytond-galatea_cms.git
synced 2023-12-14 04:32:53 +01:00
17 lines
455 B
Python
17 lines
455 B
Python
# This file is part galatea_cms module for Tryton.
|
|
# The COPYRIGHT file at the top level of this repository contains
|
|
# the full copyright notices and license terms.
|
|
from trytond.pool import Pool
|
|
from . import cms
|
|
|
|
|
|
def register():
|
|
Pool.register(
|
|
cms.Menu,
|
|
cms.Block,
|
|
cms.Article,
|
|
cms.ArticleBlock,
|
|
cms.ArticleWebsite,
|
|
cms.Carousel,
|
|
cms.CarouselItem,
|
|
module='galatea_cms', type_='model')
|