Skip to content
Snippets Groups Projects
Commit d462c1e4 authored by Patrick Jentsch's avatar Patrick Jentsch
Browse files

Rename PublicUserList to UserList

parent ce032011
No related branches found
No related tags found
No related merge requests found
......@@ -10,9 +10,9 @@ class ResourceList {
JobList.autoInit();
JobInputList.autoInit();
JobResultList.autoInit();
PublicUserList.autoInit();
SpaCyNLPPipelineModelList.autoInit();
TesseractOCRPipelineModelList.autoInit();
UserList.autoInit();
AdminUserList.autoInit();
}
......
class PublicUserList extends ResourceList {
class UserList extends ResourceList {
static autoInit() {
for (let publicUserListElement of document.querySelectorAll('.public-user-list:not(.no-autoinit)')) {
new PublicUserList(publicUserListElement);
for (let publicUserListElement of document.querySelectorAll('.user-list:not(.no-autoinit)')) {
new UserList(publicUserListElement);
}
}
......
......@@ -24,9 +24,9 @@
'js/ResourceLists/JobList.js',
'js/ResourceLists/JobInputList.js',
'js/ResourceLists/JobResultList.js',
'js/ResourceLists/PublicUserList.js',
'js/ResourceLists/SpacyNLPPipelineModelList.js',
'js/ResourceLists/TesseractOCRPipelineModelList.js',
'js/ResourceLists/UserList.js',
'js/ResourceLists/AdminUserList.js',
'js/XMLtoObject.js'
%}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment