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 proto-docs/session.md
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ Session Token body.
| ----- | ---- | ----- | ----------- |
| version | [uint32](#uint32) | | Token version. |
| nonce | [uint32](#uint32) | | Random nonce to prevent collisions. |
| issuer | [Target](#neo.fs.v2.session.Target) | | Account that issued this token (who signed it). |
| issuer | [neo.fs.v2.refs.OwnerID](#neo.fs.v2.refs.OwnerID) | | Account that issued this token (who signed it). |
| subjects | [Target](#neo.fs.v2.session.Target) | repeated | Accounts authorized by this token (who can use it). Maximum number of subjects: 8. |
| lifetime | [TokenLifetime](#neo.fs.v2.session.TokenLifetime) | | Lifetime of this token. |
| contexts | [SessionContextV2](#neo.fs.v2.session.SessionContextV2) | repeated | Unified session contexts for both object and container operations. Multiple contexts allow authorization for different combinations. Maximum number of contexts: 16. |
Expand Down
2 changes: 1 addition & 1 deletion session/types.proto
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ message SessionTokenV2 {
uint32 nonce = 2 [json_name = "nonce"];

// Account that issued this token (who signed it).
Target issuer = 3 [json_name = "issuer"];
neo.fs.v2.refs.OwnerID issuer = 3 [json_name = "issuer"];

// Accounts authorized by this token (who can use it).
// Maximum number of subjects: 8.
Expand Down
Loading