mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-06 11:23:48 -05:00
This removes some code which is duplicative and obscure (ie it’s not very clear why we do `"a" * 73` even though there is a Very Good Reason for doing so).
16 lines
366 B
Python
16 lines
366 B
Python
from app.notify_client import NotifyAdminAPIClient
|
|
|
|
|
|
class EventsApiClient(NotifyAdminAPIClient):
|
|
|
|
def create_event(self, event_type, event_data):
|
|
data = {
|
|
'event_type': event_type,
|
|
'data': event_data
|
|
}
|
|
resp = self.post(url='/events', data=data)
|
|
return resp['data']
|
|
|
|
|
|
events_api_client = EventsApiClient()
|