Merge in 5.31
[civicrm-core.git] / ext / oauth-client / ang / oauthUtil.ang.php
1 <?php
2 // This file declares an Angular module which can be autoloaded
3 // in CiviCRM. See also:
4 // \https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_angularModules/n
5 return [
6 'js' => [
7 'ang/oauthUtil.js',
8 // 'ang/oauthUtil/*.js',
9 // 'ang/oauthUtil/*/*.js',
10 ],
11 // 'css' => ['ang/oauthUtil.css'],
12 // 'partials' => ['ang/oauthUtil'],
13 // 'requires' => ['crmUi', 'crmUtil'],
14 'settings' => [],
15 'settingsFactory' => ['CRM_OAuth_Angular', 'getSettings'],
16 'exports' => [
17 'oauth-util-import' => 'A',
18 'oauth-util-grant-ctrl' => 'A',
19 ],
20 ];