summaryrefslogtreecommitdiffstats
path: root/js/services/davClient_service.js
blob: c799b680c0381630408b43c23e686ff9c7b9db11 (plain)
1
2
3
4
5
6
app.service('DavClient', function() {
	var xhr = new dav.transport.Basic(
		new dav.Credentials()
	);
	return new dav.Client(xhr);
});