mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-29 08:14:57 +00:00
config: yaml,session,ops (1 files)
This commit is contained in:
65
dbal/api/schema/operations/session.ops.yaml
Normal file
65
dbal/api/schema/operations/session.ops.yaml
Normal file
@@ -0,0 +1,65 @@
|
||||
operations:
|
||||
create:
|
||||
description: "Create a new session"
|
||||
input:
|
||||
required: [user_id, token, expires_at]
|
||||
output: Session
|
||||
acl_required: ["session:write"]
|
||||
system_only: true
|
||||
security:
|
||||
audit: true
|
||||
never_log_token: true
|
||||
errors:
|
||||
- VALIDATION_ERROR: "Invalid session input"
|
||||
- CONFLICT: "Session token already exists"
|
||||
|
||||
read:
|
||||
description: "Get session by ID"
|
||||
input:
|
||||
required: [id]
|
||||
output: Session
|
||||
acl_required: ["session:read"]
|
||||
system_only: true
|
||||
errors:
|
||||
- NOT_FOUND: "Session not found"
|
||||
|
||||
update:
|
||||
description: "Update session expiration or activity timestamp"
|
||||
input:
|
||||
required: [id]
|
||||
optional: [user_id, token, expires_at, last_activity]
|
||||
output: Session
|
||||
acl_required: ["session:write"]
|
||||
system_only: true
|
||||
security:
|
||||
audit: true
|
||||
never_log_token: true
|
||||
errors:
|
||||
- NOT_FOUND: "Session not found"
|
||||
- VALIDATION_ERROR: "Invalid session update"
|
||||
- CONFLICT: "Session token already exists"
|
||||
|
||||
delete:
|
||||
description: "Delete session by ID"
|
||||
input:
|
||||
required: [id]
|
||||
output: boolean
|
||||
acl_required: ["session:delete"]
|
||||
system_only: true
|
||||
security:
|
||||
audit: true
|
||||
errors:
|
||||
- NOT_FOUND: "Session not found"
|
||||
|
||||
list:
|
||||
description: "List sessions with filtering and pagination"
|
||||
input:
|
||||
optional: [user_id, token, page, limit, sort]
|
||||
output: Session[]
|
||||
acl_required: ["session:read"]
|
||||
system_only: true
|
||||
pagination: true
|
||||
max_limit: 200
|
||||
default_limit: 50
|
||||
errors:
|
||||
- VALIDATION_ERROR: "Invalid pagination parameters"
|
||||
Reference in New Issue
Block a user