/** * Nextcloud - contacts * * This file is licensed under the Affero General Public License version 3 or * later. See the COPYING file. * * @author Hendrik Leppelsack * @copyright Hendrik Leppelsack 2015 */ angular.module('contactsApp', ['uuid4', 'angular-cache', 'ngRoute', 'ui.bootstrap', 'ui.select', 'ngSanitize', 'angular-click-outside', 'ngclipboard']) .config(function($routeProvider) { $routeProvider.when('/:gid', { template: '' }); $routeProvider.when('/:gid/:uid', { template: '' }); $routeProvider.otherwise('/' + t('contacts', 'All contacts')); });