Generalized frontend model store (#193)

This commit is contained in:
Gregory Schier
2025-03-31 11:56:17 -07:00
committed by GitHub
parent ce885c3551
commit f1757ae427
201 changed files with 2185 additions and 2865 deletions
@@ -2,8 +2,13 @@
Default permissions for the plugin
- `allow-upsert`
- `allow-delete`
- `allow-duplicate`
- `allow-get-settings`
- `allow-grpc-events`
- `allow-upsert`
- `allow-websocket-events`
- `allow-workspace-models`
## Permission Table
@@ -43,6 +48,84 @@ Denies the delete command without any pre-configured scope.
<tr>
<td>
`yaak-models:allow-duplicate`
</td>
<td>
Enables the duplicate command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`yaak-models:deny-duplicate`
</td>
<td>
Denies the duplicate command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`yaak-models:allow-get-settings`
</td>
<td>
Enables the get_settings command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`yaak-models:deny-get-settings`
</td>
<td>
Denies the get_settings command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`yaak-models:allow-grpc-events`
</td>
<td>
Enables the grpc_events command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`yaak-models:deny-grpc-events`
</td>
<td>
Denies the grpc_events command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`yaak-models:allow-upsert`
</td>
@@ -63,6 +146,58 @@ Enables the upsert command without any pre-configured scope.
Denies the upsert command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`yaak-models:allow-websocket-events`
</td>
<td>
Enables the websocket_events command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`yaak-models:deny-websocket-events`
</td>
<td>
Denies the websocket_events command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`yaak-models:allow-workspace-models`
</td>
<td>
Enables the workspace_models command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`yaak-models:deny-workspace-models`
</td>
<td>
Denies the workspace_models command without any pre-configured scope.
</td>
</tr>
</table>