mirror of
https://github.com/Cian-H/invenio-config-iform.git
synced 2025-12-22 13:11:56 +00:00
21 lines
501 B
Python
21 lines
501 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright (C) 2020-2024 Graz University of Technology.
|
|
#
|
|
# invenio-config-iform is free software; you can redistribute it and/or
|
|
# modify it under the terms of the MIT License; see LICENSE file for more
|
|
# details.
|
|
|
|
"""invenio module that adds I-Form configs."""
|
|
|
|
from .ext import InvenioConfigIform
|
|
from .utils import get_identity_from_user_by_email
|
|
|
|
__version__ = "0.12.5"
|
|
|
|
__all__ = (
|
|
"InvenioConfigIform",
|
|
"__version__",
|
|
"get_identity_from_user_by_email",
|
|
)
|