mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-18 04:41:45 -05:00
Start building up the validators required for post notificaiton. The app/v2/errors.py is a rough sketch, will be passed a code, the error can look up the message and link for the error message.
15 lines
208 B
Python
15 lines
208 B
Python
def persist_notification():
|
|
'''
|
|
persist the notification
|
|
:return:
|
|
'''
|
|
pass
|
|
|
|
|
|
def send_notificaiton_to_queue():
|
|
'''
|
|
send the notification to the queue
|
|
:return:
|
|
'''
|
|
pass
|