Source code for notifications.utils

__copyright__ = "Copyright © Stichting SciPost (SciPost Foundation)"
__license__ = "AGPL v3"


[docs]def slug2id(slug): return int(slug) - 9631
[docs]def id2slug(id): return id + 9631