You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/how-to/manage-data/loading-data.mdx
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,8 @@ import addingAttributes from "/static/ui-videos/how-to/loading-data/attributes-t
7
7
8
8
There are three ways you can load data into Permit / your PDPs:
9
9
1. Loading to Permit as a database - storing attributes per object in the [UI](#via-a-user-in-the-ui) or [API](#via-the-api)
10
-
2. Loading data as part of the [input for authorization queries](#via-the-permitcheck-function).
11
-
3. Loading data asynchronously in the background from data sources [via OPAL](#via-opal)
10
+
2. Loading data as part of the [input for authorization queries](#via-the-permitcheck-function).
11
+
3. Loading data asynchronously in the background from data sources [via OPAL](#via-opal)
12
12
13
13
## Via a user in the UI
14
14
@@ -19,7 +19,7 @@ As you perform a `permit.check()` for any individual user to check his access, t
19
19
function and the enforcement is evaluated based on the policy and the user attributes.
20
20
21
21
<videocontrolsautoPlayloopplaysInline>
22
-
<sourcesrc={addingAttributes}/>
22
+
<sourcesrc={addingAttributes}/>
23
23
</video>
24
24
25
25
## Via the `permit.check()` function
@@ -34,7 +34,7 @@ These attributes are evaluated on each enforcement check. This also gives you th
34
34
:::info
35
35
Both a resource and a user can have multiple attributes attached to them.
36
36
There are no practical limits on number of objects or object sizes.
37
-
There are limits on the overall data volume that can be loaded to a single PDP, which can be bypassed via [PDP Sharding](/how-to/manage-data/pdp-sharding/).
37
+
There are limits on the overall data volume that can be loaded to a single PDP, which can be bypassed via [PDP Sharding](/concepts/pdp/overview#sharded-edge-pdps).
38
38
:::
39
39
40
40
Here is an example of the code:
@@ -81,7 +81,7 @@ To make changes to the OPAL Scope, use the
81
81
[OPAL Scope API](https://api.permit.io/v2/redoc#tag/Scope-Configurations). Simply include the
82
82
project and environment IDs in the API endpoint URL - don't worry, our guide can show you where to find them.
83
83
84
-
Out of the box, Permit automatically pulls in details about users, roles, and more from its cloud database to the PDP's policy engine,
84
+
Out of the box, Permit automatically pulls in details about users, roles, and more from its cloud database to the PDP's policy engine,
85
85
setting a solid foundation for your policy.<br />
86
86
87
87
To view the data structure loaded into PDPs used by default check out the API reference and the example [here](https://api.permit.io/v2/redoc#tag/OPAL-Data-(-EAP-)).
0 commit comments