1 | <?php |
||
10 | class SlackController extends Controller |
||
11 | { |
||
12 | /** |
||
13 | * Return all data to the Slack API dashboard |
||
14 | * @return mixed |
||
15 | */ |
||
16 | public function getPage() |
||
22 | |||
23 | /** |
||
24 | * Get All Users on Your Team |
||
25 | * @return array |
||
26 | */ |
||
27 | private function getAllUsersOnYourTeam($count = null) |
||
37 | |||
38 | /** |
||
39 | * Send Message to Channel or Group |
||
40 | * @param Request $request |
||
41 | * @return Session |
||
42 | */ |
||
43 | public function sendMessageToTeam(Request $request) |
||
55 | } |
||
56 |