@robertraaijmakers/pptb-securityplugin 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -52
- package/dist/README.md +7 -52
- package/dist/app.js +710 -162
- package/dist/app.js.map +2 -2
- package/dist/icon.svg +7 -0
- package/dist/index.css +77 -3
- package/dist/index.html +75 -6
- package/npm-shrinkwrap.json +2 -2
- package/package.json +3 -3
- package/dist/npm-shrinkwrap.json +0 -490
- package/dist/styles.css +0 -754
package/README.md
CHANGED
|
@@ -1,62 +1,17 @@
|
|
|
1
1
|
# Security Roles Explorer
|
|
2
2
|
Power Platform ToolBox tool for inspecting and managing Dataverse security roles, table privileges, and user assignments. Helps you quickly understand which roles grant access to which tables and lets you update privileges or user-role assignments in one place.
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
- View role privileges by role or by table
|
|
6
|
-
- Batch cache of role privilege data for faster loading
|
|
7
|
-
- Sort and filter by privilege level
|
|
8
|
-
- Rights filter (all / with rights / without rights)
|
|
9
|
-
- Role multi-select filter (entity mode)
|
|
10
|
-
- Apply or undo pending privilege changes
|
|
11
|
-
- Assign or remove roles for users (role -> users or user -> roles)
|
|
12
|
-
- Activity log with timestamps
|
|
13
|
-
- Light/dark theme support with a manual toggle
|
|
14
|
-
|
|
15
|
-
## Requirements
|
|
16
|
-
- Power Platform ToolBox (desktop app)
|
|
17
|
-
- Node.js 18+ (recommended)
|
|
18
|
-
|
|
19
|
-
## Development
|
|
20
|
-
Install dependencies:
|
|
21
|
-
|
|
22
|
-
```bash
|
|
23
|
-
npm install
|
|
24
|
-
```
|
|
25
|
-
|
|
26
|
-
Build once:
|
|
27
|
-
|
|
28
|
-
```bash
|
|
29
|
-
npm run build
|
|
30
|
-
```
|
|
4
|
+
More information and user manual can be [found here](https://robertraaijmakers.github.io/pptb.securityplugin/).
|
|
31
5
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
## Loading in ToolBox (for developers)
|
|
39
|
-
1. Enable Debug Menu in ToolBox settings.
|
|
40
|
-
2. Use Debug > Load Local Tool and select this folder.
|
|
41
|
-
3. Close and reopen the tool to refresh changes.
|
|
42
|
-
|
|
43
|
-
## Usage
|
|
44
|
-
1. Select a connection in ToolBox.
|
|
45
|
-
2. Use the filters and sort controls to narrow results.
|
|
46
|
-
3. Change privilege levels in the grid and click Apply changes.
|
|
47
|
-
4. Use the Assign security roles tab to add/remove roles for users.
|
|
48
|
-
|
|
49
|
-
## Contributing
|
|
50
|
-
1. Fork the repo.
|
|
51
|
-
2. Create a feature branch.
|
|
52
|
-
3. Make changes with small, focused commits.
|
|
53
|
-
4. Run `npm run build` and verify in ToolBox.
|
|
54
|
-
5. Open a pull request with a clear description and screenshots if UI changes.
|
|
6
|
+
## Features
|
|
7
|
+
- View and (bulk) edit security privileges by Security Role or Table
|
|
8
|
+
- Quickly filter & sort the roles or tables and bulk update the privileges
|
|
9
|
+
- View and (bulk) edit Security Role assignement per user, team and/or role
|
|
10
|
+
- Overview Dashboard with security metrics
|
|
55
11
|
|
|
56
12
|
## Troubleshooting
|
|
57
13
|
- If the tool shows "Not connected", select a connection in ToolBox and reload.
|
|
58
|
-
- If role privileges fail to load, verify the connection user has the required security role permissions.
|
|
59
|
-
- If UI changes do not appear, ensure `npm run build` completed and reopen the tool.
|
|
14
|
+
- If role privileges fail to load, verify the connection user has the required security role permissions and try to refresh the details.
|
|
60
15
|
|
|
61
16
|
## License
|
|
62
17
|
MIT
|
package/dist/README.md
CHANGED
|
@@ -1,62 +1,17 @@
|
|
|
1
1
|
# Security Roles Explorer
|
|
2
2
|
Power Platform ToolBox tool for inspecting and managing Dataverse security roles, table privileges, and user assignments. Helps you quickly understand which roles grant access to which tables and lets you update privileges or user-role assignments in one place.
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
- View role privileges by role or by table
|
|
6
|
-
- Batch cache of role privilege data for faster loading
|
|
7
|
-
- Sort and filter by privilege level
|
|
8
|
-
- Rights filter (all / with rights / without rights)
|
|
9
|
-
- Role multi-select filter (entity mode)
|
|
10
|
-
- Apply or undo pending privilege changes
|
|
11
|
-
- Assign or remove roles for users (role -> users or user -> roles)
|
|
12
|
-
- Activity log with timestamps
|
|
13
|
-
- Light/dark theme support with a manual toggle
|
|
14
|
-
|
|
15
|
-
## Requirements
|
|
16
|
-
- Power Platform ToolBox (desktop app)
|
|
17
|
-
- Node.js 18+ (recommended)
|
|
18
|
-
|
|
19
|
-
## Development
|
|
20
|
-
Install dependencies:
|
|
21
|
-
|
|
22
|
-
```bash
|
|
23
|
-
npm install
|
|
24
|
-
```
|
|
25
|
-
|
|
26
|
-
Build once:
|
|
27
|
-
|
|
28
|
-
```bash
|
|
29
|
-
npm run build
|
|
30
|
-
```
|
|
4
|
+
More information and user manual can be [found here](https://robertraaijmakers.github.io/pptb.securityplugin/).
|
|
31
5
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
## Loading in ToolBox (for developers)
|
|
39
|
-
1. Enable Debug Menu in ToolBox settings.
|
|
40
|
-
2. Use Debug > Load Local Tool and select this folder.
|
|
41
|
-
3. Close and reopen the tool to refresh changes.
|
|
42
|
-
|
|
43
|
-
## Usage
|
|
44
|
-
1. Select a connection in ToolBox.
|
|
45
|
-
2. Use the filters and sort controls to narrow results.
|
|
46
|
-
3. Change privilege levels in the grid and click Apply changes.
|
|
47
|
-
4. Use the Assign security roles tab to add/remove roles for users.
|
|
48
|
-
|
|
49
|
-
## Contributing
|
|
50
|
-
1. Fork the repo.
|
|
51
|
-
2. Create a feature branch.
|
|
52
|
-
3. Make changes with small, focused commits.
|
|
53
|
-
4. Run `npm run build` and verify in ToolBox.
|
|
54
|
-
5. Open a pull request with a clear description and screenshots if UI changes.
|
|
6
|
+
## Features
|
|
7
|
+
- View and (bulk) edit security privileges by Security Role or Table
|
|
8
|
+
- Quickly filter & sort the roles or tables and bulk update the privileges
|
|
9
|
+
- View and (bulk) edit Security Role assignement per user, team and/or role
|
|
10
|
+
- Overview Dashboard with security metrics
|
|
55
11
|
|
|
56
12
|
## Troubleshooting
|
|
57
13
|
- If the tool shows "Not connected", select a connection in ToolBox and reload.
|
|
58
|
-
- If role privileges fail to load, verify the connection user has the required security role permissions.
|
|
59
|
-
- If UI changes do not appear, ensure `npm run build` completed and reopen the tool.
|
|
14
|
+
- If role privileges fail to load, verify the connection user has the required security role permissions and try to refresh the details.
|
|
60
15
|
|
|
61
16
|
## License
|
|
62
17
|
MIT
|