Skip to content

Commit

Permalink
Merge pull request #20 from realifetech/feature/BE-786-be-eventmaster…
Browse files Browse the repository at this point in the history
…-events-integration-event-audience-client

BE-786: added client for app_event_audience endpoints
  • Loading branch information
tomrutherford-livestyled authored Apr 7, 2021
2 parents 80e88f9 + 44435c5 commit 9973a27
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/EventManagement/EventAudienceClient.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php

namespace LiveStyled\EventManagement;

use LiveStyled\CrudClient;
use LiveStyled\RelationClient;

class EventAudienceClient extends RelationClient implements CrudClient
{
protected function getPath()
{
return '/v4/event_management/event_audiences';
}
}
14 changes: 14 additions & 0 deletions src/UserManagement/AudienceClient.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php

namespace LiveStyled\UserManagement;

use LiveStyled\Client;
use LiveStyled\CrudClient;

class AudienceClient extends Client implements CrudClient
{
protected function getPath()
{
return '/v4/user_management/audiences';
}
}

0 comments on commit 9973a27

Please sign in to comment.