mirror of
https://github.com/nextcloud/passman.git
synced 2024-11-11 09:59:21 +08:00
15 lines
285 B
JavaScript
15 lines
285 B
JavaScript
|
'use strict';
|
||
|
angular
|
||
|
.module('passmanApp', [
|
||
|
'ngAnimate',
|
||
|
'ngCookies',
|
||
|
'ngResource',
|
||
|
'ngRoute',
|
||
|
'ngSanitize',
|
||
|
'ngTouch',
|
||
|
'ngclipboard',
|
||
|
|
||
|
]).config(['$httpProvider', function ($httpProvider) {
|
||
|
$httpProvider.defaults.headers.common.requesttoken = oc_requesttoken;
|
||
|
}]);
|