Skip to content

Commit

Permalink
feat: add AllowedViewers variant to LogVisibility enum (#512)
Browse files Browse the repository at this point in the history
  • Loading branch information
maksymar committed Sep 6, 2024
1 parent 3e54016 commit 97c4e19
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ic-cdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [unreleased]

* Add `AllowedViewers` to `LogVisibility` enum.

## [0.16.0] - 2024-08-27

### Changed
Expand Down
3 changes: 3 additions & 0 deletions src/ic-cdk/src/api/management_canister/main/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ pub enum LogVisibility {
#[serde(rename = "public")]
/// Everyone is allowed to access the canister's logs.
Public,
#[serde(rename = "allowed_viewers")]
/// Canister logs are visible to a set of principals.
AllowedViewers(Vec<Principal>),
}

/// Canister settings.
Expand Down

0 comments on commit 97c4e19

Please sign in to comment.