]> BookStack Code Mirror - bookstack/blob - app/Activity/Tools/WatchedParentDetails.php
Add optional OIDC avatar fetching from the “picture” claim
[bookstack] / app / Activity / Tools / WatchedParentDetails.php
1 <?php
2
3 namespace BookStack\Activity\Tools;
4
5 use BookStack\Activity\WatchLevels;
6
7 class WatchedParentDetails
8 {
9     public function __construct(
10         public string $type,
11         public int $level,
12     ) {
13     }
14
15     public function ignoring(): bool
16     {
17         return $this->level === WatchLevels::IGNORE;
18     }
19 }