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: CHANGELOG.md
+1-2
Original file line number
Diff line number
Diff line change
@@ -2,10 +2,9 @@
2
2
This is the changelog for [Authress SDK](readme.md).
3
3
4
4
## 2.0 ##
5
-
* Renamed `AccessRecordStatements` and other models that end with `S` but aren't actually plural to be `AccessRecordStatement` (without the `S`).
6
-
* All APIs are now part of sub instance properties of the `AuthressClient` class, `AccessClient.AccessRecords` and `AccessClient.ServiceClients`, etc..
7
5
*`ApiBasePath` has been renamed to `AuthressApiUrl`.
8
6
*`HttpClientSettings` Has been removed in favor of `AuthressSettings` Class.
7
+
*[Breaking]`UserPermissions.GetUserResources()` no longer returns the property `AccessToAllSubResources`. When a user only has access to parent resources, the list will always be empty unless the `CollectionConfigurationEnum` property is specified.
9
8
10
9
## 1.5 ##
11
10
* Fix `DateTimeOffset` type assignments, properties that were incorrectly defined as `DateTime` are now correctly `DateTimeOffsets`.
Copy file name to clipboardexpand all lines: src/Authress.SDK/Api/IUserPermissionsApi.cs
+1-1
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ namespace Authress.SDK.Api
11
11
publicinterfaceIUserPermissionsApi
12
12
{
13
13
/// <summary>
14
-
/// Get the users resources. Get the users resources. This result is a list of resource uris that a user has an explicit permission to, a user with * access to all sub resources will return an empty list and {AccessToAllSubResources} will be populated. The list will be paginated.
14
+
/// Get the users resources. This result is a list of resource uris that a user has an permission to. By default only the top level matching resources are returned. To get a user's list of deeply nested resources, set the collectionConfiguration to be INCLUDE_NESTED. This collection is paginated.
15
15
/// </summary>
16
16
/// <param name="userId">The user to check permissions on</param>
17
17
/// <param name="resourceCollectionUri">The uri path of a collection resource to fetch permissions for.</param>
/// Get the users resources. Get the users resources. This result is a list of resource uris that a user has an explicit permission to, a user with * access to all sub resources will return an empty list and {AccessToAllSubResources} will be populated. The list will be paginated.
138
+
/// Get the users resources. This result is a list of resource uris that a user has an permission to. By default only the top level matching resources are returned. To get a user's list of deeply nested resources, set the collectionConfiguration to be INCLUDE_NESTED. This collection is paginated.
139
139
/// </summary>
140
140
/// <param name="userId">The user to check permissions on</param>
141
141
/// <param name="resourceCollectionUri">The uri path of a collection resource to fetch permissions for.</param>
0 commit comments