mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-10 01:17:42 +01:00
40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
|
|
||
|
from aiohttp import web
|
||
|
from cbpi.api import request_mapping
|
||
|
from cbpi.utils import json_dumps
|
||
|
|
||
|
class NotificationHttpEndpoints:
|
||
|
|
||
|
def __init__(self,cbpi):
|
||
|
self.cbpi = cbpi
|
||
|
self.cbpi.register(self, url_prefix="/notification")
|
||
|
|
||
|
@request_mapping(path="/{id}/action/{action_id}", method="POST", auth_required=False)
|
||
|
async def action(self, request):
|
||
|
"""
|
||
|
---
|
||
|
description: Update an actor
|
||
|
tags:
|
||
|
- Notification
|
||
|
parameters:
|
||
|
- name: "id"
|
||
|
in: "path"
|
||
|
description: "Notification Id"
|
||
|
required: true
|
||
|
type: "string"
|
||
|
- name: "action_id"
|
||
|
in: "path"
|
||
|
description: "Action Id"
|
||
|
required: true
|
||
|
type: "string"
|
||
|
|
||
|
responses:
|
||
|
"200":
|
||
|
description: successful operation
|
||
|
"""
|
||
|
|
||
|
notification_id = request.match_info['id']
|
||
|
action_id = request.match_info['action_id']
|
||
|
print(notification_id, action_id)
|
||
|
self.cbpi.notification.notify_callback(notification_id, action_id)
|
||
|
return web.Response(status=204)
|