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