3
0
Fork 0
mirror of https://github.com/farmOS/farmOS.git synced 2024-02-23 11:37:38 +01:00
farmOS/modules/farm/farm_client/farm_client.module

22 lines
340 B
Plaintext
Raw Normal View History

<?php
/**
* @file
* Farm Client module.
*/
/**
* Implements hook_farm_api_oauth2_client().
*/
function farm_client_farm_api_oauth2_client() {
$clients = array();
$clients['farmos_field_kit'] = array(
'label' => 'farmOS Field Kit',
'client_key' => 'farmos_field_kit',
'redirect_uri' => '',
);
return $clients;
}