Welcome to mirror list, hosted at ThFree Co, Russian Federation.

OC.js « mocks « tests « js - github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3544f200cee5d8a7bcfac5cdf886520c4f214010 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
 * ownCloud - Mail
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Christoph Wurst <christoph@winzerhof-wurst.at>
 * @copyright Christoph Wurst 2015
 */

define(function() {
	return {
		generateUrl: function(url, params) {
			return '/app/mail/' + url;
		}
	};
});