o365-2.0.3/modules/o365_sharepoint_field/o365_sharepoint_field.module
modules/o365_sharepoint_field/o365_sharepoint_field.module
<?php
/**
* @file
* Hook implementations for the o365_sharepoint_field module.
*/
/**
* Implements hook_o365_auth_scopes().
*/
function o365_sharepoint_field_o365_auth_scopes(array &$scopes) {
$scopes[] = 'Files.Read';
$scopes[] = 'Files.Read.All';
$scopes[] = 'Files.Read.Selected';
}
