00a6619cbe
.NET Build and Publish / build (push) Has been cancelled
* Add permission checks and deprecate canPublish * Fix tests * How's this * make tests more reliable * lets test this first * test * This should speed up unit tests * skip slow tests * I HATE flaky tests
12 lines
393 B
C#
12 lines
393 B
C#
namespace Speckle.Sdk.Api.GraphQL.Models;
|
|
|
|
public sealed class ProjectPermissionChecks
|
|
{
|
|
public PermissionCheckResult canCreateModel { get; init; }
|
|
public PermissionCheckResult canDelete { get; init; }
|
|
public PermissionCheckResult canLoad { get; init; }
|
|
|
|
[Obsolete("Use ModelPermissionChecks.CanCreateVersion instead", true)]
|
|
public PermissionCheckResult canPublish { get; init; }
|
|
}
|