-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathentryPoints.js
More file actions
33 lines (33 loc) · 1.16 KB
/
entryPoints.js
File metadata and controls
33 lines (33 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
* Copyright (c) 2023-2026 LabKey Corporation
*
* Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0
*/
module.exports = {
apps: [{
name: 'helloWorld',
title: 'Hello World Page',
permissionClasses: ['org.labkey.api.security.permissions.ReadPermission'],
path: './src/client/HelloWorldPage'
},{
name: 'todoList',
title: 'To-Do List Page',
permissionClasses: ['org.labkey.api.security.permissions.InsertPermission'],
path: './src/client/ToDoListPage'
},{
name: 'demoWebpart',
title: 'To-Do List Webpart',
path: './src/client/ToDoListPage/webpart',
generateLib: true // used by views/demoWebpart.html
},{
name: 'queryModel',
title: 'QueryModel Example Page',
permissionClasses: ['org.labkey.api.security.permissions.ReadPermission'],
path: './src/client/QueryModelPage'
},{
name: 'fileAttachmentForm',
title: 'File Attachment Example Page',
permissionClasses: ['org.labkey.api.security.permissions.InsertPermission'],
path: './src/client/FileAttachmentPage'
}]
};