Files
notifications-api/app/main/views/notifications.py
Martyn Inglis e25ca0e434 Basic commit to add get pages showing
- bootstrap script
- run script
- couple of views
- basic config
2015-12-10 10:56:59 +00:00

8 lines
164 B
Python

from flask import jsonify
from .. import main
@main.route('/notification', methods=['POST'])
def create_notification():
return jsonify(result="created"), 201