mirror of
https://github.com/farmOS/farmOS.git
synced 2024-02-23 11:37:38 +01:00
21 lines
339 B
Text
21 lines
339 B
Text
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Farm Client module.
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_farm_api_oauth2_client().
|
|
*/
|
|
function farm_client_farm_api_oauth2_client() {
|
|
$clients = array();
|
|
|
|
$clients['farm_client'] = array(
|
|
'label' => 'farmOS Client (Field Kit)',
|
|
'client_key' => 'farm_client',
|
|
'redirect_uri' => '',
|
|
);
|
|
|
|
return $clients;
|
|
}
|