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

personal.js « js - github.com/nextcloud/user_saml.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4897e787110add62a06da419a8045e39819205c3 (plain)
1
2
3
4
5
6
7
8
9
$(function() {

	// Show token views
	var collection = new OCA.User_SAML.AuthTokenCollection();
	var view = new OCA.User_SAML.AuthTokenView({
		collection: collection
	});
	view.reload();
});