Implement approval engine production readiness
Assistant: codex Assistant-Model: gpt-5.6-sol Assistant-Session: 01a05e2e-805b-7042-a750-71f473bceea2
This commit is contained in:
parent
ebce5abb27
commit
2bd2d19a98
30 changed files with 1679 additions and 53 deletions
|
|
@ -3,6 +3,16 @@ class ApprovalError(Exception):
|
|||
reason_code = "error"
|
||||
|
||||
|
||||
class Unauthenticated(ApprovalError):
|
||||
http_status = 401
|
||||
reason_code = "unauthenticated"
|
||||
|
||||
|
||||
class Forbidden(ApprovalError):
|
||||
http_status = 403
|
||||
reason_code = "forbidden"
|
||||
|
||||
|
||||
class NotFound(ApprovalError):
|
||||
http_status = 404
|
||||
reason_code = "not_found"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue