trytond-project_role/__init__.py

15 lines
417 B
Python
Raw Permalink Normal View History

2020-03-05 10:19:01 +01:00
# This file is part project_role 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 role
def register():
Pool.register(
role.WorkConfiguration,
2020-03-05 10:19:01 +01:00
role.Role,
role.Allocation,
role.WorkStatus,
2020-03-05 10:19:01 +01:00
role.Work,
module='project_role', type_='model')