Skip to content

Commit 78c93bb

Browse files
authored
Merge pull request #111 from josephschorr/wildcard-error-reason
Add error reason for wildcards
2 parents 298f3d3 + 507c8c6 commit 78c93bb

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

authzed/api/v1/error_reason.proto

+13
Original file line numberDiff line numberDiff line change
@@ -386,4 +386,17 @@ enum ErrorReason {
386386
// "metadata": { "counter_name": "name" }
387387
// }
388388
ERROR_REASON_COUNTER_NOT_REGISTERED = 27;
389+
390+
// The request failed because a wildcard was not allowed. For CheckPermission,
391+
// this means that the subject or resource ID was a wildcard. For LookupResources,
392+
// this means that the subject ID was a wildcard.
393+
//
394+
// Example of an ErrorInfo:
395+
//
396+
// {
397+
// "reason": "ERROR_REASON_WILDCARD_NOT_ALLOWED",
398+
// "domain": "authzed.com",
399+
// "metadata": { "disallowed_field": "subject_id" }
400+
// }
401+
ERROR_REASON_WILDCARD_NOT_ALLOWED = 28;
389402
}

0 commit comments

Comments
 (0)