Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Kepware.Api.Test/ApiClient/ServerUserGroupTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Kepware.Api.Test.ApiClient
{
public class ServerUserGroupTests : TestApiClientBase
{
private const string ENDPOINT_USER_GROUP = "/config/v1/admin/server_user_groups";
private const string ENDPOINT_USER_GROUP = "/config/v1/admin/server_usergroups";

[Fact]
public async Task GetServerUserGroupAsync_ShouldReturnServerUserGroup_WhenApiRespondsSuccessfully()
Expand Down
4 changes: 2 additions & 2 deletions Kepware.Api/Model/Admin/ServerUserGroup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Kepware.Api.Model.Admin
/// <summary>
/// Represents a user group in Kepware, allowing management of permissions and access control.
/// </summary>
[Endpoint("/config/v1/admin/server_user_groups/{name}")]
[Endpoint("/config/v1/admin/server_usergroups/{name}")]
public class ServerUserGroup : NamedEntity
{
/// <summary>
Expand Down Expand Up @@ -289,7 +289,7 @@ public bool? BrowseNamespace
#endregion
}

[Endpoint("/config/v1/admin/server_user_groups")]
[Endpoint("/config/v1/admin/server_usergroups")]
public class ServerUserGroupCollection : EntityCollection<ServerUserGroup>
{

Expand Down