mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-23 11:29:50 -05:00
13 lines
295 B
Python
13 lines
295 B
Python
from flask import Blueprint
|
|
from app import socketio
|
|
|
|
test_bp = Blueprint('test', __name__)
|
|
|
|
@test_bp.route('/test-emit', methods=["GET"])
|
|
def test_emit():
|
|
socketio.emit('job_update', {
|
|
'job_id': 'abc123',
|
|
'status': 'Test message from API'
|
|
})
|
|
return "Event emitted!"
|