mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-04-19 12:41:12 +00:00
11 lines
195 B
Python
11 lines
195 B
Python
'''' Django notifications utils file '''
|
|
# -*- coding: utf-8 -*-
|
|
import sys
|
|
|
|
|
|
def slug2id(slug):
|
|
return int(slug) - 110909
|
|
|
|
|
|
def id2slug(notification_id):
|
|
return notification_id + 110909
|