GET https://kbin.spritesserver.nl/index.php/u/@TechieDamien@lemmy.ml/comments

Security

Token

There is no security token.

Firewall

main Name
Security enabled
Stateless

Configuration

Key Value
provider security.user.provider.concrete.app_user_provider
context main
entry_point App\Security\KbinAuthenticator
user_checker App\Security\UserChecker
access_denied_handler (none)
access_denied_url (none)
authenticators
[
  "two_factor"
  "remember_me"
  "App\Security\KbinAuthenticator"
  "App\Security\FacebookAuthenticator"
  "App\Security\GoogleAuthenticator"
  "App\Security\GithubAuthenticator"
  "App\Security\KeycloakAuthenticator"
]

Listeners

Listener Duration Response
Symfony\Component\Security\Http\Firewall\ChannelListener {#723
  -map: Symfony\Component\Security\Http\AccessMap {#722 …}
  -logger: Monolog\Logger {#783 …}
  -httpPort: 80
  -httpsPort: 443
}
0.00 ms (none)
Symfony\Component\Security\Http\Firewall\ContextListener {#706
  -tokenStorage: Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorage {#1017 …}
  -sessionKey: "_security_main"
  -logger: Monolog\Logger {#783 …}
  -userProviders: Symfony\Component\DependencyInjection\Argument\RewindableGenerator {#705 …}
  -dispatcher: Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher {#747 …}
  -registered: false
  -trustResolver: Scheb\TwoFactorBundle\Security\Authentication\AuthenticationTrustResolver {#780 …}
  -sessionTrackerEnabler: Symfony\Component\Security\Core\Authentication\Token\Storage\UsageTrackingTokenStorage::enableUsageTracking(): void {#703 …}
}
3.30 ms (none)
Symfony\Component\Security\Http\Firewall\AuthenticatorManagerListener {#584
  -authenticatorManager: Symfony\Component\Security\Http\Authentication\AuthenticatorManager {#595 …}
}
0.00 ms (none)
Scheb\TwoFactorBundle\Security\Http\Firewall\TwoFactorAccessListener {#582
  -twoFactorFirewallConfig: Scheb\TwoFactorBundle\Security\TwoFactor\TwoFactorFirewallConfig {#842 …}
  -tokenStorage: Symfony\Component\Security\Core\Authentication\Token\Storage\UsageTrackingTokenStorage {#1018 …}
  -twoFactorAccessDecider: Scheb\TwoFactorBundle\Security\Authorization\TwoFactorAccessDecider {#581 …}
}
0.05 ms (none)
Symfony\Component\Security\Http\Firewall\AccessListener {#579
  -tokenStorage: Symfony\Component\Security\Core\Authentication\Token\Storage\UsageTrackingTokenStorage {#1018 …}
  -accessDecisionManager: Symfony\Component\Security\Core\Authorization\TraceableAccessDecisionManager {#937 …}
  -map: Symfony\Component\Security\Http\AccessMap {#722 …}
}
0.00 ms (none)
Symfony\Component\Security\Http\Firewall\LogoutListener {#786
  -tokenStorage: Symfony\Component\Security\Core\Authentication\Token\Storage\UsageTrackingTokenStorage {#1018 …}
  -options: [
    "csrf_parameter" => "_csrf_token"
    "csrf_token_id" => "logout"
    "logout_path" => "app_logout"
  ]
  -httpUtils: Symfony\Component\Security\Http\HttpUtils {#841 …}
  -csrfTokenManager: Symfony\Component\Security\Csrf\CsrfTokenManager {#1015 …}
  -eventDispatcher: Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher {#747 …}
}
0.00 ms (none)

Authenticators

No authenticators have been recorded. Check previous profiles on your authentication endpoint.

Access Decision

affirmative Strategy
# Voter class
1
"Symfony\Component\Security\Core\Authorization\Voter\AuthenticatedVoter"
2
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
3
"Symfony\Component\Security\Core\Authorization\Voter\RoleHierarchyVoter"
4
"Symfony\Component\Security\Core\Authorization\Voter\ExpressionVoter"
5
"App\Security\Voter\EntryCommentVoter"
6
"App\Security\Voter\EntryVoter"
7
"App\Security\Voter\MagazineVoter"
8
"App\Security\Voter\MessageThreadVoter"
9
"App\Security\Voter\MessageVoter"
10
"App\Security\Voter\NotificationVoter"
11
"App\Security\Voter\OAuth2UserConsentVoter"
12
"App\Security\Voter\PostCommentVoter"
13
"App\Security\Voter\PostVoter"
14
"App\Security\Voter\UserVoter"

Access decision log

# Result Attributes Object
1 DENIED ROLE_USER
null
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"Symfony\Component\Security\Core\Authorization\Voter\RoleHierarchyVoter"
ACCESS DENIED
"App\Security\Voter\EntryCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
2 DENIED moderate
App\Entity\EntryComment {#2084
  +user: App\Entity\User {#264 …}
  +entry: Proxies\__CG__\App\Entity\Entry {#1908 …}
  +magazine: Proxies\__CG__\App\Entity\Magazine {#2378 …}
  +image: null
  +parent: Proxies\__CG__\App\Entity\EntryComment {#1363 …}
  +root: Proxies\__CG__\App\Entity\EntryComment {#1361 …}
  +body: """
    There’s pros and cons. On one hand, packing your dependencies into your executable leads to never having to worry about broken dependencies, but also leads you into other problems. What happens when a dependency has a security update? Now you need an updated executable for every executable that has that bundled dependency. What if the developer has stopped maintaining it and the code is closed source? Well, you are out of luck. You either have the vulnerability or you stop using the program. Additionally bundling dependencies can drastically increase executable size. This is partially why C programs are so small, because they can rely on glibc when not all languages have such a core ubiquitous library.\n
    \n
    As an aside, if you do prefer the bundled dependency approach, it is actually available on Linux. For example, you can use appimages, which are very similar to a portable exe file on windows. Of course, you may run afoul of the previously mentioned issues, but it may be an option depending on what was released.
    """
  +lang: "en"
  +isAdult: false
  +favouriteCount: 1
  +score: 0
  +lastActive: DateTime @1706128307 {#2081
    date: 2024-01-24 21:31:47.0 +01:00
  }
  +ip: null
  +tags: null
  +mentions: [
    "@renzev@lemmy.world"
    "@IndustryStandard@lemmy.world"
  ]
  +children: Doctrine\ORM\PersistentCollection {#1403 …}
  +nested: Doctrine\ORM\PersistentCollection {#2023 …}
  +votes: Doctrine\ORM\PersistentCollection {#2032 …}
  +reports: Doctrine\ORM\PersistentCollection {#2024 …}
  +favourites: Doctrine\ORM\PersistentCollection {#2361 …}
  +notifications: Doctrine\ORM\PersistentCollection {#2382 …}
  -id: 337553
  -bodyTs: "'actual':131 'addit':85 'afoul':157 'also':25 'appimag':140 'approach':128 'asid':120 'avail':132 'broken':22 'bundl':52,86,126 'c':97 'close':66 'code':64 'con':5 'core':115 'cours':153 'depend':11,23,35,53,87,127,169 'develop':57 'drastic':89 'either':75 'everi':47 'exampl':136 'exe':148 'execut':14,45,48,91 'file':149 'glibc':107 'hand':8 'happen':32 'increas':90 'issu':162 'languag':111 'lead':15,26 'librari':117 'linux':134 'luck':73 'maintain':60 'may':155,165 'mention':161 'need':42 'never':17 'one':7 'option':168 'pack':9 'partial':95 'portabl':147 'prefer':124 'previous':160 'problem':30 'program':84,98 'pros':3 'releas':173 'reli':105 'run':156 'secur':38 'similar':144 'size':92 'small':101 'sourc':67 'stop':59,81 'ubiquit':116 'updat':39,44 'use':82,139 'vulner':78 'well':68 'window':151 'worri':20"
  +ranking: 0
  +commentCount: 0
  +upVotes: 0
  +downVotes: 0
  +visibility: "visible             "
  +apId: "https://lemmy.ml/comment/7691175"
  +editedAt: null
  +createdAt: DateTimeImmutable @1706128307 {#1407
    date: 2024-01-24 21:31:47.0 +01:00
  }
}
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryCommentVoter"
ACCESS DENIED
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
3 DENIED edit
App\Entity\EntryComment {#2084
  +user: App\Entity\User {#264 …}
  +entry: Proxies\__CG__\App\Entity\Entry {#1908 …}
  +magazine: Proxies\__CG__\App\Entity\Magazine {#2378 …}
  +image: null
  +parent: Proxies\__CG__\App\Entity\EntryComment {#1363 …}
  +root: Proxies\__CG__\App\Entity\EntryComment {#1361 …}
  +body: """
    There’s pros and cons. On one hand, packing your dependencies into your executable leads to never having to worry about broken dependencies, but also leads you into other problems. What happens when a dependency has a security update? Now you need an updated executable for every executable that has that bundled dependency. What if the developer has stopped maintaining it and the code is closed source? Well, you are out of luck. You either have the vulnerability or you stop using the program. Additionally bundling dependencies can drastically increase executable size. This is partially why C programs are so small, because they can rely on glibc when not all languages have such a core ubiquitous library.\n
    \n
    As an aside, if you do prefer the bundled dependency approach, it is actually available on Linux. For example, you can use appimages, which are very similar to a portable exe file on windows. Of course, you may run afoul of the previously mentioned issues, but it may be an option depending on what was released.
    """
  +lang: "en"
  +isAdult: false
  +favouriteCount: 1
  +score: 0
  +lastActive: DateTime @1706128307 {#2081
    date: 2024-01-24 21:31:47.0 +01:00
  }
  +ip: null
  +tags: null
  +mentions: [
    "@renzev@lemmy.world"
    "@IndustryStandard@lemmy.world"
  ]
  +children: Doctrine\ORM\PersistentCollection {#1403 …}
  +nested: Doctrine\ORM\PersistentCollection {#2023 …}
  +votes: Doctrine\ORM\PersistentCollection {#2032 …}
  +reports: Doctrine\ORM\PersistentCollection {#2024 …}
  +favourites: Doctrine\ORM\PersistentCollection {#2361 …}
  +notifications: Doctrine\ORM\PersistentCollection {#2382 …}
  -id: 337553
  -bodyTs: "'actual':131 'addit':85 'afoul':157 'also':25 'appimag':140 'approach':128 'asid':120 'avail':132 'broken':22 'bundl':52,86,126 'c':97 'close':66 'code':64 'con':5 'core':115 'cours':153 'depend':11,23,35,53,87,127,169 'develop':57 'drastic':89 'either':75 'everi':47 'exampl':136 'exe':148 'execut':14,45,48,91 'file':149 'glibc':107 'hand':8 'happen':32 'increas':90 'issu':162 'languag':111 'lead':15,26 'librari':117 'linux':134 'luck':73 'maintain':60 'may':155,165 'mention':161 'need':42 'never':17 'one':7 'option':168 'pack':9 'partial':95 'portabl':147 'prefer':124 'previous':160 'problem':30 'program':84,98 'pros':3 'releas':173 'reli':105 'run':156 'secur':38 'similar':144 'size':92 'small':101 'sourc':67 'stop':59,81 'ubiquit':116 'updat':39,44 'use':82,139 'vulner':78 'well':68 'window':151 'worri':20"
  +ranking: 0
  +commentCount: 0
  +upVotes: 0
  +downVotes: 0
  +visibility: "visible             "
  +apId: "https://lemmy.ml/comment/7691175"
  +editedAt: null
  +createdAt: DateTimeImmutable @1706128307 {#1407
    date: 2024-01-24 21:31:47.0 +01:00
  }
}
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryCommentVoter"
ACCESS DENIED
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
4 DENIED moderate
App\Entity\EntryComment {#2084
  +user: App\Entity\User {#264 …}
  +entry: Proxies\__CG__\App\Entity\Entry {#1908 …}
  +magazine: Proxies\__CG__\App\Entity\Magazine {#2378 …}
  +image: null
  +parent: Proxies\__CG__\App\Entity\EntryComment {#1363 …}
  +root: Proxies\__CG__\App\Entity\EntryComment {#1361 …}
  +body: """
    There’s pros and cons. On one hand, packing your dependencies into your executable leads to never having to worry about broken dependencies, but also leads you into other problems. What happens when a dependency has a security update? Now you need an updated executable for every executable that has that bundled dependency. What if the developer has stopped maintaining it and the code is closed source? Well, you are out of luck. You either have the vulnerability or you stop using the program. Additionally bundling dependencies can drastically increase executable size. This is partially why C programs are so small, because they can rely on glibc when not all languages have such a core ubiquitous library.\n
    \n
    As an aside, if you do prefer the bundled dependency approach, it is actually available on Linux. For example, you can use appimages, which are very similar to a portable exe file on windows. Of course, you may run afoul of the previously mentioned issues, but it may be an option depending on what was released.
    """
  +lang: "en"
  +isAdult: false
  +favouriteCount: 1
  +score: 0
  +lastActive: DateTime @1706128307 {#2081
    date: 2024-01-24 21:31:47.0 +01:00
  }
  +ip: null
  +tags: null
  +mentions: [
    "@renzev@lemmy.world"
    "@IndustryStandard@lemmy.world"
  ]
  +children: Doctrine\ORM\PersistentCollection {#1403 …}
  +nested: Doctrine\ORM\PersistentCollection {#2023 …}
  +votes: Doctrine\ORM\PersistentCollection {#2032 …}
  +reports: Doctrine\ORM\PersistentCollection {#2024 …}
  +favourites: Doctrine\ORM\PersistentCollection {#2361 …}
  +notifications: Doctrine\ORM\PersistentCollection {#2382 …}
  -id: 337553
  -bodyTs: "'actual':131 'addit':85 'afoul':157 'also':25 'appimag':140 'approach':128 'asid':120 'avail':132 'broken':22 'bundl':52,86,126 'c':97 'close':66 'code':64 'con':5 'core':115 'cours':153 'depend':11,23,35,53,87,127,169 'develop':57 'drastic':89 'either':75 'everi':47 'exampl':136 'exe':148 'execut':14,45,48,91 'file':149 'glibc':107 'hand':8 'happen':32 'increas':90 'issu':162 'languag':111 'lead':15,26 'librari':117 'linux':134 'luck':73 'maintain':60 'may':155,165 'mention':161 'need':42 'never':17 'one':7 'option':168 'pack':9 'partial':95 'portabl':147 'prefer':124 'previous':160 'problem':30 'program':84,98 'pros':3 'releas':173 'reli':105 'run':156 'secur':38 'similar':144 'size':92 'small':101 'sourc':67 'stop':59,81 'ubiquit':116 'updat':39,44 'use':82,139 'vulner':78 'well':68 'window':151 'worri':20"
  +ranking: 0
  +commentCount: 0
  +upVotes: 0
  +downVotes: 0
  +visibility: "visible             "
  +apId: "https://lemmy.ml/comment/7691175"
  +editedAt: null
  +createdAt: DateTimeImmutable @1706128307 {#1407
    date: 2024-01-24 21:31:47.0 +01:00
  }
}
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryCommentVoter"
ACCESS DENIED
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
5 DENIED ROLE_USER
null
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"Symfony\Component\Security\Core\Authorization\Voter\RoleHierarchyVoter"
ACCESS DENIED
"App\Security\Voter\EntryCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
6 DENIED moderate
App\Entity\EntryComment {#2129
  +user: App\Entity\User {#264 …}
  +entry: Proxies\__CG__\App\Entity\Entry {#2347 …}
  +magazine: Proxies\__CG__\App\Entity\Magazine {#2333 …}
  +image: null
  +parent: Proxies\__CG__\App\Entity\EntryComment {#2326 …}
  +root: Proxies\__CG__\App\Entity\EntryComment {#2096 …}
  +body: "Can’t include any proprietary code, so using the google sdk would invalidate it I believe."
  +lang: "en"
  +isAdult: false
  +favouriteCount: 2
  +score: 0
  +lastActive: DateTime @1705345431 {#2076
    date: 2024-01-15 20:03:51.0 +01:00
  }
  +ip: null
  +tags: null
  +mentions: [
    "@reactive_recall@lemmy.ml"
    "@yamanii@lemmy.world"
    "@amnesiac@lemmy.world"
  ]
  +children: Doctrine\ORM\PersistentCollection {#2341 …}
  +nested: Doctrine\ORM\PersistentCollection {#2300 …}
  +votes: Doctrine\ORM\PersistentCollection {#2140 …}
  +reports: Doctrine\ORM\PersistentCollection {#2289 …}
  +favourites: Doctrine\ORM\PersistentCollection {#2191 …}
  +notifications: Doctrine\ORM\PersistentCollection {#2328 …}
  -id: 311492
  -bodyTs: "'believ':16 'code':6 'googl':10 'includ':3 'invalid':13 'proprietari':5 'sdk':11 'use':8 'would':12"
  +ranking: 0
  +commentCount: 0
  +upVotes: 0
  +downVotes: 0
  +visibility: "visible             "
  +apId: "https://lemmy.ml/comment/7404412"
  +editedAt: null
  +createdAt: DateTimeImmutable @1705345431 {#2083
    date: 2024-01-15 20:03:51.0 +01:00
  }
}
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryCommentVoter"
ACCESS DENIED
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
7 DENIED edit
App\Entity\EntryComment {#2129
  +user: App\Entity\User {#264 …}
  +entry: Proxies\__CG__\App\Entity\Entry {#2347 …}
  +magazine: Proxies\__CG__\App\Entity\Magazine {#2333 …}
  +image: null
  +parent: Proxies\__CG__\App\Entity\EntryComment {#2326 …}
  +root: Proxies\__CG__\App\Entity\EntryComment {#2096 …}
  +body: "Can’t include any proprietary code, so using the google sdk would invalidate it I believe."
  +lang: "en"
  +isAdult: false
  +favouriteCount: 2
  +score: 0
  +lastActive: DateTime @1705345431 {#2076
    date: 2024-01-15 20:03:51.0 +01:00
  }
  +ip: null
  +tags: null
  +mentions: [
    "@reactive_recall@lemmy.ml"
    "@yamanii@lemmy.world"
    "@amnesiac@lemmy.world"
  ]
  +children: Doctrine\ORM\PersistentCollection {#2341 …}
  +nested: Doctrine\ORM\PersistentCollection {#2300 …}
  +votes: Doctrine\ORM\PersistentCollection {#2140 …}
  +reports: Doctrine\ORM\PersistentCollection {#2289 …}
  +favourites: Doctrine\ORM\PersistentCollection {#2191 …}
  +notifications: Doctrine\ORM\PersistentCollection {#2328 …}
  -id: 311492
  -bodyTs: "'believ':16 'code':6 'googl':10 'includ':3 'invalid':13 'proprietari':5 'sdk':11 'use':8 'would':12"
  +ranking: 0
  +commentCount: 0
  +upVotes: 0
  +downVotes: 0
  +visibility: "visible             "
  +apId: "https://lemmy.ml/comment/7404412"
  +editedAt: null
  +createdAt: DateTimeImmutable @1705345431 {#2083
    date: 2024-01-15 20:03:51.0 +01:00
  }
}
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryCommentVoter"
ACCESS DENIED
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
8 DENIED moderate
App\Entity\EntryComment {#2129
  +user: App\Entity\User {#264 …}
  +entry: Proxies\__CG__\App\Entity\Entry {#2347 …}
  +magazine: Proxies\__CG__\App\Entity\Magazine {#2333 …}
  +image: null
  +parent: Proxies\__CG__\App\Entity\EntryComment {#2326 …}
  +root: Proxies\__CG__\App\Entity\EntryComment {#2096 …}
  +body: "Can’t include any proprietary code, so using the google sdk would invalidate it I believe."
  +lang: "en"
  +isAdult: false
  +favouriteCount: 2
  +score: 0
  +lastActive: DateTime @1705345431 {#2076
    date: 2024-01-15 20:03:51.0 +01:00
  }
  +ip: null
  +tags: null
  +mentions: [
    "@reactive_recall@lemmy.ml"
    "@yamanii@lemmy.world"
    "@amnesiac@lemmy.world"
  ]
  +children: Doctrine\ORM\PersistentCollection {#2341 …}
  +nested: Doctrine\ORM\PersistentCollection {#2300 …}
  +votes: Doctrine\ORM\PersistentCollection {#2140 …}
  +reports: Doctrine\ORM\PersistentCollection {#2289 …}
  +favourites: Doctrine\ORM\PersistentCollection {#2191 …}
  +notifications: Doctrine\ORM\PersistentCollection {#2328 …}
  -id: 311492
  -bodyTs: "'believ':16 'code':6 'googl':10 'includ':3 'invalid':13 'proprietari':5 'sdk':11 'use':8 'would':12"
  +ranking: 0
  +commentCount: 0
  +upVotes: 0
  +downVotes: 0
  +visibility: "visible             "
  +apId: "https://lemmy.ml/comment/7404412"
  +editedAt: null
  +createdAt: DateTimeImmutable @1705345431 {#2083
    date: 2024-01-15 20:03:51.0 +01:00
  }
}
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryCommentVoter"
ACCESS DENIED
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
9 DENIED ROLE_USER
null
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"Symfony\Component\Security\Core\Authorization\Voter\RoleHierarchyVoter"
ACCESS DENIED
"App\Security\Voter\EntryCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
10 DENIED moderate
App\Entity\EntryComment {#2331
  +user: App\Entity\User {#264 …}
  +entry: Proxies\__CG__\App\Entity\Entry {#2141 …}
  +magazine: Proxies\__CG__\App\Entity\Magazine {#2346 …}
  +image: null
  +parent: Proxies\__CG__\App\Entity\EntryComment {#2349 …}
  +root: Proxies\__CG__\App\Entity\EntryComment {#2332
    +user: App\Entity\User {#264 …}
    +entry: Proxies\__CG__\App\Entity\Entry {#2141 …}
    +magazine: Proxies\__CG__\App\Entity\Magazine {#2346 …}
    +image: null
    +parent: null
    +root: null
    +body: "I set mpv as the root window which worked well. I stopped using it a while back, but if you are interested, I could dig up the simple script for you (literally one or two lines iirc)."
    +lang: "en"
    +isAdult: false
    +favouriteCount: 0
    +score: 0
    +lastActive: DateTime @1710322148 {#2164
      date: 2024-03-13 10:29:08.0 +01:00
    }
    +ip: null
    +tags: null
    +mentions: [
      "@manito_manopla@lemmy.ml"
    ]
    +children: Doctrine\ORM\PersistentCollection {#2093 …}
    +nested: Doctrine\ORM\PersistentCollection {#2086 …}
    +votes: Doctrine\ORM\PersistentCollection {#2087 …}
    +reports: Doctrine\ORM\PersistentCollection {#2088 …}
    +favourites: Doctrine\ORM\PersistentCollection {#2064 …}
    +notifications: Doctrine\ORM\PersistentCollection {#2063 …}
    -id: 264584
    -bodyTs: "'back':17 'could':24 'dig':25 'iirc':37 'interest':22 'line':36 'liter':32 'mpv':3 'one':33 'root':6 'script':29 'set':2 'simpl':28 'stop':12 'two':35 'use':13 'well':10 'window':7 'work':9"
    +ranking: 0
    +commentCount: 0
    +upVotes: 0
    +downVotes: 0
    +visibility: "visible             "
    +apId: "https://lemmy.ml/comment/6955898"
    +editedAt: null
    +createdAt: DateTimeImmutable @1703940618 {#2314
      date: 2023-12-30 13:50:18.0 +01:00
    }
    +__isInitialized__: true
     …2
  }
  +body: """
    Sure. If you are using an nvidia optimus laptop, you should also add __NV_PRIME_RENDER_OFFLOAD=1 __GLX_VENDOR_LIBRARY_NAME=nvidia at the start of the last line when running in hybrid mode to run mpv on the dgpu. You should have a file at ~/.wallpaperrc that contains `wallpaper_playlist: /path/to/mpv/playlist`. You may want to add this script to your startup sequence via your wm/de.\n
    \n
    ```\n
    \n
    <span style="color:#323232;">#!/bin/sh\n
    </span><span style="color:#323232;">\n
    </span><span style="color:#323232;">WALLPAPER_PLAYLIST=$(cat ~/.wallpaperrc | grep -v '^w*#' | grep 'wallpaper_playlist' | sed "s/wallpaper_playlist: //")\n
    </span><span style="color:#323232;">\n
    </span><span style="color:#323232;">\n
    </span><span style="color:#323232;">xwinwrap -g 1920x1080 -ov -- mpv -wid WID --no-osc --no-audio --loop-playlist --shuffle --playlist=$WALLPAPER_PLAYLIST\n
    </span>\n
    ```\n
    \n
    Hope this helps!
    """
  +lang: "en"
  +isAdult: false
  +favouriteCount: 1
  +score: 0
  +lastActive: DateTime @1704119205 {#2345
    date: 2024-01-01 15:26:45.0 +01:00
  }
  +ip: null
  +tags: [
    "323232"
  ]
  +mentions: [
    "@manito_manopla@lemmy.ml"
    "@TechieDamien@lemmy.ml"
  ]
  +children: Doctrine\ORM\PersistentCollection {#2344 …}
  +nested: Doctrine\ORM\PersistentCollection {#2138 …}
  +votes: Doctrine\ORM\PersistentCollection {#2350 …}
  +reports: Doctrine\ORM\PersistentCollection {#2040 …}
  +favourites: Doctrine\ORM\PersistentCollection {#2132 …}
  +notifications: Doctrine\ORM\PersistentCollection {#2133 …}
  -id: 270096
  -bodyTs: "'/.wallpaperrc':48,72 '/bin/sh':68 '/path/to/mpv/playlist':53 '1':18 '1920x1080':83 'add':13,58 'also':12 'audio':93 'cat':71 'contain':50 'dgpu':41 'file':46 'g':82 'glx':19 'grep':73,76 'help':103 'hope':101 'hybrid':34 'laptop':9 'last':29 'librari':21 'line':30 'loop':95 'loop-playlist':94 'may':55 'mode':35 'mpv':38,85 'name':22 'no-audio':91 'no-osc':88 'nv':14 'nvidia':7,23 'offload':17 'optimus':8 'osc':90 'ov':84 'playlist':52,70,78,96,98,100 'prime':15 'render':16 'run':32,37 's/wallpaper_playlist':80 'script':60 'sed':79 'sequenc':64 'shuffl':97 'start':26 'startup':63 'sure':1 'use':5 'v':74 'vendor':20 'via':65 'w':75 'wallpap':51,69,77,99 'want':56 'wid':86,87 'wm/de':67 'xwinwrap':81"
  +ranking: 0
  +commentCount: 0
  +upVotes: 0
  +downVotes: 0
  +visibility: "visible             "
  +apId: "https://lemmy.ml/comment/6990035"
  +editedAt: null
  +createdAt: DateTimeImmutable @1704119205 {#1909
    date: 2024-01-01 15:26:45.0 +01:00
  }
}
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryCommentVoter"
ACCESS DENIED
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
11 DENIED edit
App\Entity\EntryComment {#2331
  +user: App\Entity\User {#264 …}
  +entry: Proxies\__CG__\App\Entity\Entry {#2141 …}
  +magazine: Proxies\__CG__\App\Entity\Magazine {#2346 …}
  +image: null
  +parent: Proxies\__CG__\App\Entity\EntryComment {#2349 …}
  +root: Proxies\__CG__\App\Entity\EntryComment {#2332
    +user: App\Entity\User {#264 …}
    +entry: Proxies\__CG__\App\Entity\Entry {#2141 …}
    +magazine: Proxies\__CG__\App\Entity\Magazine {#2346 …}
    +image: null
    +parent: null
    +root: null
    +body: "I set mpv as the root window which worked well. I stopped using it a while back, but if you are interested, I could dig up the simple script for you (literally one or two lines iirc)."
    +lang: "en"
    +isAdult: false
    +favouriteCount: 0
    +score: 0
    +lastActive: DateTime @1710322148 {#2164
      date: 2024-03-13 10:29:08.0 +01:00
    }
    +ip: null
    +tags: null
    +mentions: [
      "@manito_manopla@lemmy.ml"
    ]
    +children: Doctrine\ORM\PersistentCollection {#2093 …}
    +nested: Doctrine\ORM\PersistentCollection {#2086 …}
    +votes: Doctrine\ORM\PersistentCollection {#2087 …}
    +reports: Doctrine\ORM\PersistentCollection {#2088 …}
    +favourites: Doctrine\ORM\PersistentCollection {#2064 …}
    +notifications: Doctrine\ORM\PersistentCollection {#2063 …}
    -id: 264584
    -bodyTs: "'back':17 'could':24 'dig':25 'iirc':37 'interest':22 'line':36 'liter':32 'mpv':3 'one':33 'root':6 'script':29 'set':2 'simpl':28 'stop':12 'two':35 'use':13 'well':10 'window':7 'work':9"
    +ranking: 0
    +commentCount: 0
    +upVotes: 0
    +downVotes: 0
    +visibility: "visible             "
    +apId: "https://lemmy.ml/comment/6955898"
    +editedAt: null
    +createdAt: DateTimeImmutable @1703940618 {#2314
      date: 2023-12-30 13:50:18.0 +01:00
    }
    +__isInitialized__: true
     …2
  }
  +body: """
    Sure. If you are using an nvidia optimus laptop, you should also add __NV_PRIME_RENDER_OFFLOAD=1 __GLX_VENDOR_LIBRARY_NAME=nvidia at the start of the last line when running in hybrid mode to run mpv on the dgpu. You should have a file at ~/.wallpaperrc that contains `wallpaper_playlist: /path/to/mpv/playlist`. You may want to add this script to your startup sequence via your wm/de.\n
    \n
    ```\n
    \n
    <span style="color:#323232;">#!/bin/sh\n
    </span><span style="color:#323232;">\n
    </span><span style="color:#323232;">WALLPAPER_PLAYLIST=$(cat ~/.wallpaperrc | grep -v '^w*#' | grep 'wallpaper_playlist' | sed "s/wallpaper_playlist: //")\n
    </span><span style="color:#323232;">\n
    </span><span style="color:#323232;">\n
    </span><span style="color:#323232;">xwinwrap -g 1920x1080 -ov -- mpv -wid WID --no-osc --no-audio --loop-playlist --shuffle --playlist=$WALLPAPER_PLAYLIST\n
    </span>\n
    ```\n
    \n
    Hope this helps!
    """
  +lang: "en"
  +isAdult: false
  +favouriteCount: 1
  +score: 0
  +lastActive: DateTime @1704119205 {#2345
    date: 2024-01-01 15:26:45.0 +01:00
  }
  +ip: null
  +tags: [
    "323232"
  ]
  +mentions: [
    "@manito_manopla@lemmy.ml"
    "@TechieDamien@lemmy.ml"
  ]
  +children: Doctrine\ORM\PersistentCollection {#2344 …}
  +nested: Doctrine\ORM\PersistentCollection {#2138 …}
  +votes: Doctrine\ORM\PersistentCollection {#2350 …}
  +reports: Doctrine\ORM\PersistentCollection {#2040 …}
  +favourites: Doctrine\ORM\PersistentCollection {#2132 …}
  +notifications: Doctrine\ORM\PersistentCollection {#2133 …}
  -id: 270096
  -bodyTs: "'/.wallpaperrc':48,72 '/bin/sh':68 '/path/to/mpv/playlist':53 '1':18 '1920x1080':83 'add':13,58 'also':12 'audio':93 'cat':71 'contain':50 'dgpu':41 'file':46 'g':82 'glx':19 'grep':73,76 'help':103 'hope':101 'hybrid':34 'laptop':9 'last':29 'librari':21 'line':30 'loop':95 'loop-playlist':94 'may':55 'mode':35 'mpv':38,85 'name':22 'no-audio':91 'no-osc':88 'nv':14 'nvidia':7,23 'offload':17 'optimus':8 'osc':90 'ov':84 'playlist':52,70,78,96,98,100 'prime':15 'render':16 'run':32,37 's/wallpaper_playlist':80 'script':60 'sed':79 'sequenc':64 'shuffl':97 'start':26 'startup':63 'sure':1 'use':5 'v':74 'vendor':20 'via':65 'w':75 'wallpap':51,69,77,99 'want':56 'wid':86,87 'wm/de':67 'xwinwrap':81"
  +ranking: 0
  +commentCount: 0
  +upVotes: 0
  +downVotes: 0
  +visibility: "visible             "
  +apId: "https://lemmy.ml/comment/6990035"
  +editedAt: null
  +createdAt: DateTimeImmutable @1704119205 {#1909
    date: 2024-01-01 15:26:45.0 +01:00
  }
}
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryCommentVoter"
ACCESS DENIED
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
12 DENIED moderate
App\Entity\EntryComment {#2331
  +user: App\Entity\User {#264 …}
  +entry: Proxies\__CG__\App\Entity\Entry {#2141 …}
  +magazine: Proxies\__CG__\App\Entity\Magazine {#2346 …}
  +image: null
  +parent: Proxies\__CG__\App\Entity\EntryComment {#2349 …}
  +root: Proxies\__CG__\App\Entity\EntryComment {#2332
    +user: App\Entity\User {#264 …}
    +entry: Proxies\__CG__\App\Entity\Entry {#2141 …}
    +magazine: Proxies\__CG__\App\Entity\Magazine {#2346 …}
    +image: null
    +parent: null
    +root: null
    +body: "I set mpv as the root window which worked well. I stopped using it a while back, but if you are interested, I could dig up the simple script for you (literally one or two lines iirc)."
    +lang: "en"
    +isAdult: false
    +favouriteCount: 0
    +score: 0
    +lastActive: DateTime @1710322148 {#2164
      date: 2024-03-13 10:29:08.0 +01:00
    }
    +ip: null
    +tags: null
    +mentions: [
      "@manito_manopla@lemmy.ml"
    ]
    +children: Doctrine\ORM\PersistentCollection {#2093 …}
    +nested: Doctrine\ORM\PersistentCollection {#2086 …}
    +votes: Doctrine\ORM\PersistentCollection {#2087 …}
    +reports: Doctrine\ORM\PersistentCollection {#2088 …}
    +favourites: Doctrine\ORM\PersistentCollection {#2064 …}
    +notifications: Doctrine\ORM\PersistentCollection {#2063 …}
    -id: 264584
    -bodyTs: "'back':17 'could':24 'dig':25 'iirc':37 'interest':22 'line':36 'liter':32 'mpv':3 'one':33 'root':6 'script':29 'set':2 'simpl':28 'stop':12 'two':35 'use':13 'well':10 'window':7 'work':9"
    +ranking: 0
    +commentCount: 0
    +upVotes: 0
    +downVotes: 0
    +visibility: "visible             "
    +apId: "https://lemmy.ml/comment/6955898"
    +editedAt: null
    +createdAt: DateTimeImmutable @1703940618 {#2314
      date: 2023-12-30 13:50:18.0 +01:00
    }
    +__isInitialized__: true
     …2
  }
  +body: """
    Sure. If you are using an nvidia optimus laptop, you should also add __NV_PRIME_RENDER_OFFLOAD=1 __GLX_VENDOR_LIBRARY_NAME=nvidia at the start of the last line when running in hybrid mode to run mpv on the dgpu. You should have a file at ~/.wallpaperrc that contains `wallpaper_playlist: /path/to/mpv/playlist`. You may want to add this script to your startup sequence via your wm/de.\n
    \n
    ```\n
    \n
    <span style="color:#323232;">#!/bin/sh\n
    </span><span style="color:#323232;">\n
    </span><span style="color:#323232;">WALLPAPER_PLAYLIST=$(cat ~/.wallpaperrc | grep -v '^w*#' | grep 'wallpaper_playlist' | sed "s/wallpaper_playlist: //")\n
    </span><span style="color:#323232;">\n
    </span><span style="color:#323232;">\n
    </span><span style="color:#323232;">xwinwrap -g 1920x1080 -ov -- mpv -wid WID --no-osc --no-audio --loop-playlist --shuffle --playlist=$WALLPAPER_PLAYLIST\n
    </span>\n
    ```\n
    \n
    Hope this helps!
    """
  +lang: "en"
  +isAdult: false
  +favouriteCount: 1
  +score: 0
  +lastActive: DateTime @1704119205 {#2345
    date: 2024-01-01 15:26:45.0 +01:00
  }
  +ip: null
  +tags: [
    "323232"
  ]
  +mentions: [
    "@manito_manopla@lemmy.ml"
    "@TechieDamien@lemmy.ml"
  ]
  +children: Doctrine\ORM\PersistentCollection {#2344 …}
  +nested: Doctrine\ORM\PersistentCollection {#2138 …}
  +votes: Doctrine\ORM\PersistentCollection {#2350 …}
  +reports: Doctrine\ORM\PersistentCollection {#2040 …}
  +favourites: Doctrine\ORM\PersistentCollection {#2132 …}
  +notifications: Doctrine\ORM\PersistentCollection {#2133 …}
  -id: 270096
  -bodyTs: "'/.wallpaperrc':48,72 '/bin/sh':68 '/path/to/mpv/playlist':53 '1':18 '1920x1080':83 'add':13,58 'also':12 'audio':93 'cat':71 'contain':50 'dgpu':41 'file':46 'g':82 'glx':19 'grep':73,76 'help':103 'hope':101 'hybrid':34 'laptop':9 'last':29 'librari':21 'line':30 'loop':95 'loop-playlist':94 'may':55 'mode':35 'mpv':38,85 'name':22 'no-audio':91 'no-osc':88 'nv':14 'nvidia':7,23 'offload':17 'optimus':8 'osc':90 'ov':84 'playlist':52,70,78,96,98,100 'prime':15 'render':16 'run':32,37 's/wallpaper_playlist':80 'script':60 'sed':79 'sequenc':64 'shuffl':97 'start':26 'startup':63 'sure':1 'use':5 'v':74 'vendor':20 'via':65 'w':75 'wallpap':51,69,77,99 'want':56 'wid':86,87 'wm/de':67 'xwinwrap':81"
  +ranking: 0
  +commentCount: 0
  +upVotes: 0
  +downVotes: 0
  +visibility: "visible             "
  +apId: "https://lemmy.ml/comment/6990035"
  +editedAt: null
  +createdAt: DateTimeImmutable @1704119205 {#1909
    date: 2024-01-01 15:26:45.0 +01:00
  }
}
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryCommentVoter"
ACCESS DENIED
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
13 DENIED ROLE_USER
null
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"Symfony\Component\Security\Core\Authorization\Voter\RoleHierarchyVoter"
ACCESS DENIED
"App\Security\Voter\EntryCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
14 DENIED moderate
Proxies\__CG__\App\Entity\EntryComment {#2332
  +user: App\Entity\User {#264 …}
  +entry: Proxies\__CG__\App\Entity\Entry {#2141 …}
  +magazine: Proxies\__CG__\App\Entity\Magazine {#2346 …}
  +image: null
  +parent: null
  +root: null
  +body: "I set mpv as the root window which worked well. I stopped using it a while back, but if you are interested, I could dig up the simple script for you (literally one or two lines iirc)."
  +lang: "en"
  +isAdult: false
  +favouriteCount: 0
  +score: 0
  +lastActive: DateTime @1710322148 {#2164
    date: 2024-03-13 10:29:08.0 +01:00
  }
  +ip: null
  +tags: null
  +mentions: [
    "@manito_manopla@lemmy.ml"
  ]
  +children: Doctrine\ORM\PersistentCollection {#2093 …}
  +nested: Doctrine\ORM\PersistentCollection {#2086 …}
  +votes: Doctrine\ORM\PersistentCollection {#2087 …}
  +reports: Doctrine\ORM\PersistentCollection {#2088 …}
  +favourites: Doctrine\ORM\PersistentCollection {#2064 …}
  +notifications: Doctrine\ORM\PersistentCollection {#2063 …}
  -id: 264584
  -bodyTs: "'back':17 'could':24 'dig':25 'iirc':37 'interest':22 'line':36 'liter':32 'mpv':3 'one':33 'root':6 'script':29 'set':2 'simpl':28 'stop':12 'two':35 'use':13 'well':10 'window':7 'work':9"
  +ranking: 0
  +commentCount: 0
  +upVotes: 0
  +downVotes: 0
  +visibility: "visible             "
  +apId: "https://lemmy.ml/comment/6955898"
  +editedAt: null
  +createdAt: DateTimeImmutable @1703940618 {#2314
    date: 2023-12-30 13:50:18.0 +01:00
  }
  +__isInitialized__: true
   …2
}
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryCommentVoter"
ACCESS DENIED
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
15 DENIED edit
Proxies\__CG__\App\Entity\EntryComment {#2332
  +user: App\Entity\User {#264 …}
  +entry: Proxies\__CG__\App\Entity\Entry {#2141 …}
  +magazine: Proxies\__CG__\App\Entity\Magazine {#2346 …}
  +image: null
  +parent: null
  +root: null
  +body: "I set mpv as the root window which worked well. I stopped using it a while back, but if you are interested, I could dig up the simple script for you (literally one or two lines iirc)."
  +lang: "en"
  +isAdult: false
  +favouriteCount: 0
  +score: 0
  +lastActive: DateTime @1710322148 {#2164
    date: 2024-03-13 10:29:08.0 +01:00
  }
  +ip: null
  +tags: null
  +mentions: [
    "@manito_manopla@lemmy.ml"
  ]
  +children: Doctrine\ORM\PersistentCollection {#2093 …}
  +nested: Doctrine\ORM\PersistentCollection {#2086 …}
  +votes: Doctrine\ORM\PersistentCollection {#2087 …}
  +reports: Doctrine\ORM\PersistentCollection {#2088 …}
  +favourites: Doctrine\ORM\PersistentCollection {#2064 …}
  +notifications: Doctrine\ORM\PersistentCollection {#2063 …}
  -id: 264584
  -bodyTs: "'back':17 'could':24 'dig':25 'iirc':37 'interest':22 'line':36 'liter':32 'mpv':3 'one':33 'root':6 'script':29 'set':2 'simpl':28 'stop':12 'two':35 'use':13 'well':10 'window':7 'work':9"
  +ranking: 0
  +commentCount: 0
  +upVotes: 0
  +downVotes: 0
  +visibility: "visible             "
  +apId: "https://lemmy.ml/comment/6955898"
  +editedAt: null
  +createdAt: DateTimeImmutable @1703940618 {#2314
    date: 2023-12-30 13:50:18.0 +01:00
  }
  +__isInitialized__: true
   …2
}
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryCommentVoter"
ACCESS DENIED
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
16 DENIED moderate
Proxies\__CG__\App\Entity\EntryComment {#2332
  +user: App\Entity\User {#264 …}
  +entry: Proxies\__CG__\App\Entity\Entry {#2141 …}
  +magazine: Proxies\__CG__\App\Entity\Magazine {#2346 …}
  +image: null
  +parent: null
  +root: null
  +body: "I set mpv as the root window which worked well. I stopped using it a while back, but if you are interested, I could dig up the simple script for you (literally one or two lines iirc)."
  +lang: "en"
  +isAdult: false
  +favouriteCount: 0
  +score: 0
  +lastActive: DateTime @1710322148 {#2164
    date: 2024-03-13 10:29:08.0 +01:00
  }
  +ip: null
  +tags: null
  +mentions: [
    "@manito_manopla@lemmy.ml"
  ]
  +children: Doctrine\ORM\PersistentCollection {#2093 …}
  +nested: Doctrine\ORM\PersistentCollection {#2086 …}
  +votes: Doctrine\ORM\PersistentCollection {#2087 …}
  +reports: Doctrine\ORM\PersistentCollection {#2088 …}
  +favourites: Doctrine\ORM\PersistentCollection {#2064 …}
  +notifications: Doctrine\ORM\PersistentCollection {#2063 …}
  -id: 264584
  -bodyTs: "'back':17 'could':24 'dig':25 'iirc':37 'interest':22 'line':36 'liter':32 'mpv':3 'one':33 'root':6 'script':29 'set':2 'simpl':28 'stop':12 'two':35 'use':13 'well':10 'window':7 'work':9"
  +ranking: 0
  +commentCount: 0
  +upVotes: 0
  +downVotes: 0
  +visibility: "visible             "
  +apId: "https://lemmy.ml/comment/6955898"
  +editedAt: null
  +createdAt: DateTimeImmutable @1703940618 {#2314
    date: 2023-12-30 13:50:18.0 +01:00
  }
  +__isInitialized__: true
   …2
}
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryCommentVoter"
ACCESS DENIED
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
17 DENIED ROLE_USER
null
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"Symfony\Component\Security\Core\Authorization\Voter\RoleHierarchyVoter"
ACCESS DENIED
"App\Security\Voter\EntryCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
18 DENIED moderate
App\Entity\EntryComment {#2343
  +user: App\Entity\User {#264 …}
  +entry: Proxies\__CG__\App\Entity\Entry {#2335 …}
  +magazine: Proxies\__CG__\App\Entity\Magazine {#2346 …}
  +image: null
  +parent: Proxies\__CG__\App\Entity\EntryComment {#2339 …}
  +root: Proxies\__CG__\App\Entity\EntryComment {#2339 …}
  +body: "Wow, CUPS is way better than I previously thought and I thought it was amazing!"
  +lang: "en"
  +isAdult: false
  +favouriteCount: 0
  +score: 0
  +lastActive: DateTime @1699803938 {#2092
    date: 2023-11-12 16:45:38.0 +01:00
  }
  +ip: null
  +tags: null
  +mentions: [
    "@GravelPieceOfSword@lemmy.ca"
  ]
  +children: Doctrine\ORM\PersistentCollection {#2338 …}
  +nested: Doctrine\ORM\PersistentCollection {#2143 …}
  +votes: Doctrine\ORM\PersistentCollection {#2136 …}
  +reports: Doctrine\ORM\PersistentCollection {#2073 …}
  +favourites: Doctrine\ORM\PersistentCollection {#2072 …}
  +notifications: Doctrine\ORM\PersistentCollection {#2065 …}
  -id: 115921
  -bodyTs: "'amaz':15 'better':5 'cup':2 'previous':8 'thought':9,12 'way':4 'wow':1"
  +ranking: 0
  +commentCount: 0
  +upVotes: 0
  +downVotes: 0
  +visibility: "visible             "
  +apId: "https://lemmy.ml/comment/5736408"
  +editedAt: null
  +createdAt: DateTimeImmutable @1699803938 {#2094
    date: 2023-11-12 16:45:38.0 +01:00
  }
}
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryCommentVoter"
ACCESS DENIED
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
19 DENIED edit
App\Entity\EntryComment {#2343
  +user: App\Entity\User {#264 …}
  +entry: Proxies\__CG__\App\Entity\Entry {#2335 …}
  +magazine: Proxies\__CG__\App\Entity\Magazine {#2346 …}
  +image: null
  +parent: Proxies\__CG__\App\Entity\EntryComment {#2339 …}
  +root: Proxies\__CG__\App\Entity\EntryComment {#2339 …}
  +body: "Wow, CUPS is way better than I previously thought and I thought it was amazing!"
  +lang: "en"
  +isAdult: false
  +favouriteCount: 0
  +score: 0
  +lastActive: DateTime @1699803938 {#2092
    date: 2023-11-12 16:45:38.0 +01:00
  }
  +ip: null
  +tags: null
  +mentions: [
    "@GravelPieceOfSword@lemmy.ca"
  ]
  +children: Doctrine\ORM\PersistentCollection {#2338 …}
  +nested: Doctrine\ORM\PersistentCollection {#2143 …}
  +votes: Doctrine\ORM\PersistentCollection {#2136 …}
  +reports: Doctrine\ORM\PersistentCollection {#2073 …}
  +favourites: Doctrine\ORM\PersistentCollection {#2072 …}
  +notifications: Doctrine\ORM\PersistentCollection {#2065 …}
  -id: 115921
  -bodyTs: "'amaz':15 'better':5 'cup':2 'previous':8 'thought':9,12 'way':4 'wow':1"
  +ranking: 0
  +commentCount: 0
  +upVotes: 0
  +downVotes: 0
  +visibility: "visible             "
  +apId: "https://lemmy.ml/comment/5736408"
  +editedAt: null
  +createdAt: DateTimeImmutable @1699803938 {#2094
    date: 2023-11-12 16:45:38.0 +01:00
  }
}
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryCommentVoter"
ACCESS DENIED
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
20 DENIED moderate
App\Entity\EntryComment {#2343
  +user: App\Entity\User {#264 …}
  +entry: Proxies\__CG__\App\Entity\Entry {#2335 …}
  +magazine: Proxies\__CG__\App\Entity\Magazine {#2346 …}
  +image: null
  +parent: Proxies\__CG__\App\Entity\EntryComment {#2339 …}
  +root: Proxies\__CG__\App\Entity\EntryComment {#2339 …}
  +body: "Wow, CUPS is way better than I previously thought and I thought it was amazing!"
  +lang: "en"
  +isAdult: false
  +favouriteCount: 0
  +score: 0
  +lastActive: DateTime @1699803938 {#2092
    date: 2023-11-12 16:45:38.0 +01:00
  }
  +ip: null
  +tags: null
  +mentions: [
    "@GravelPieceOfSword@lemmy.ca"
  ]
  +children: Doctrine\ORM\PersistentCollection {#2338 …}
  +nested: Doctrine\ORM\PersistentCollection {#2143 …}
  +votes: Doctrine\ORM\PersistentCollection {#2136 …}
  +reports: Doctrine\ORM\PersistentCollection {#2073 …}
  +favourites: Doctrine\ORM\PersistentCollection {#2072 …}
  +notifications: Doctrine\ORM\PersistentCollection {#2065 …}
  -id: 115921
  -bodyTs: "'amaz':15 'better':5 'cup':2 'previous':8 'thought':9,12 'way':4 'wow':1"
  +ranking: 0
  +commentCount: 0
  +upVotes: 0
  +downVotes: 0
  +visibility: "visible             "
  +apId: "https://lemmy.ml/comment/5736408"
  +editedAt: null
  +createdAt: DateTimeImmutable @1699803938 {#2094
    date: 2023-11-12 16:45:38.0 +01:00
  }
}
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryCommentVoter"
ACCESS DENIED
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
21 DENIED ROLE_USER
null
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"Symfony\Component\Security\Core\Authorization\Voter\RoleHierarchyVoter"
ACCESS DENIED
"App\Security\Voter\EntryCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
22 DENIED moderate
App\Entity\EntryComment {#2067
  +user: App\Entity\User {#264 …}
  +entry: Proxies\__CG__\App\Entity\Entry {#2070 …}
  +magazine: Proxies\__CG__\App\Entity\Magazine {#2378 …}
  +image: null
  +parent: Proxies\__CG__\App\Entity\EntryComment {#2049 …}
  +root: Proxies\__CG__\App\Entity\EntryComment {#2049 …}
  +body: "![](https://lemmy.ml/pictrs/image/4034a58a-c1cf-4388-a61c-fce08517bdc7.png)Who’s next?"
  +lang: "en"
  +isAdult: false
  +favouriteCount: 4
  +score: 0
  +lastActive: DateTime @1699642161 {#2336
    date: 2023-11-10 19:49:21.0 +01:00
  }
  +ip: null
  +tags: null
  +mentions: [
    "@ElCanut@jlai.lu"
    "@Nightsoul@lemmy.world"
  ]
  +children: Doctrine\ORM\PersistentCollection {#2048 …}
  +nested: Doctrine\ORM\PersistentCollection {#2056 …}
  +votes: Doctrine\ORM\PersistentCollection {#2046 …}
  +reports: Doctrine\ORM\PersistentCollection {#2045 …}
  +favourites: Doctrine\ORM\PersistentCollection {#2050 …}
  +notifications: Doctrine\ORM\PersistentCollection {#2052 …}
  -id: 108664
  -bodyTs: "'/pictrs/image/4034a58a-c1cf-4388-a61c-fce08517bdc7.png)who':3 'lemmy.ml':2 'lemmy.ml/pictrs/image/4034a58a-c1cf-4388-a61c-fce08517bdc7.png)who':1 'next':5"
  +ranking: 0
  +commentCount: 0
  +upVotes: 0
  +downVotes: 0
  +visibility: "visible             "
  +apId: "https://lemmy.ml/comment/5683455"
  +editedAt: null
  +createdAt: DateTimeImmutable @1699642161 {#2077
    date: 2023-11-10 19:49:21.0 +01:00
  }
}
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryCommentVoter"
ACCESS DENIED
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
23 DENIED edit
App\Entity\EntryComment {#2067
  +user: App\Entity\User {#264 …}
  +entry: Proxies\__CG__\App\Entity\Entry {#2070 …}
  +magazine: Proxies\__CG__\App\Entity\Magazine {#2378 …}
  +image: null
  +parent: Proxies\__CG__\App\Entity\EntryComment {#2049 …}
  +root: Proxies\__CG__\App\Entity\EntryComment {#2049 …}
  +body: "![](https://lemmy.ml/pictrs/image/4034a58a-c1cf-4388-a61c-fce08517bdc7.png)Who’s next?"
  +lang: "en"
  +isAdult: false
  +favouriteCount: 4
  +score: 0
  +lastActive: DateTime @1699642161 {#2336
    date: 2023-11-10 19:49:21.0 +01:00
  }
  +ip: null
  +tags: null
  +mentions: [
    "@ElCanut@jlai.lu"
    "@Nightsoul@lemmy.world"
  ]
  +children: Doctrine\ORM\PersistentCollection {#2048 …}
  +nested: Doctrine\ORM\PersistentCollection {#2056 …}
  +votes: Doctrine\ORM\PersistentCollection {#2046 …}
  +reports: Doctrine\ORM\PersistentCollection {#2045 …}
  +favourites: Doctrine\ORM\PersistentCollection {#2050 …}
  +notifications: Doctrine\ORM\PersistentCollection {#2052 …}
  -id: 108664
  -bodyTs: "'/pictrs/image/4034a58a-c1cf-4388-a61c-fce08517bdc7.png)who':3 'lemmy.ml':2 'lemmy.ml/pictrs/image/4034a58a-c1cf-4388-a61c-fce08517bdc7.png)who':1 'next':5"
  +ranking: 0
  +commentCount: 0
  +upVotes: 0
  +downVotes: 0
  +visibility: "visible             "
  +apId: "https://lemmy.ml/comment/5683455"
  +editedAt: null
  +createdAt: DateTimeImmutable @1699642161 {#2077
    date: 2023-11-10 19:49:21.0 +01:00
  }
}
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryCommentVoter"
ACCESS DENIED
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
24 DENIED moderate
App\Entity\EntryComment {#2067
  +user: App\Entity\User {#264 …}
  +entry: Proxies\__CG__\App\Entity\Entry {#2070 …}
  +magazine: Proxies\__CG__\App\Entity\Magazine {#2378 …}
  +image: null
  +parent: Proxies\__CG__\App\Entity\EntryComment {#2049 …}
  +root: Proxies\__CG__\App\Entity\EntryComment {#2049 …}
  +body: "![](https://lemmy.ml/pictrs/image/4034a58a-c1cf-4388-a61c-fce08517bdc7.png)Who’s next?"
  +lang: "en"
  +isAdult: false
  +favouriteCount: 4
  +score: 0
  +lastActive: DateTime @1699642161 {#2336
    date: 2023-11-10 19:49:21.0 +01:00
  }
  +ip: null
  +tags: null
  +mentions: [
    "@ElCanut@jlai.lu"
    "@Nightsoul@lemmy.world"
  ]
  +children: Doctrine\ORM\PersistentCollection {#2048 …}
  +nested: Doctrine\ORM\PersistentCollection {#2056 …}
  +votes: Doctrine\ORM\PersistentCollection {#2046 …}
  +reports: Doctrine\ORM\PersistentCollection {#2045 …}
  +favourites: Doctrine\ORM\PersistentCollection {#2050 …}
  +notifications: Doctrine\ORM\PersistentCollection {#2052 …}
  -id: 108664
  -bodyTs: "'/pictrs/image/4034a58a-c1cf-4388-a61c-fce08517bdc7.png)who':3 'lemmy.ml':2 'lemmy.ml/pictrs/image/4034a58a-c1cf-4388-a61c-fce08517bdc7.png)who':1 'next':5"
  +ranking: 0
  +commentCount: 0
  +upVotes: 0
  +downVotes: 0
  +visibility: "visible             "
  +apId: "https://lemmy.ml/comment/5683455"
  +editedAt: null
  +createdAt: DateTimeImmutable @1699642161 {#2077
    date: 2023-11-10 19:49:21.0 +01:00
  }
}
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryCommentVoter"
ACCESS DENIED
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
25 DENIED ROLE_USER
null
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"Symfony\Component\Security\Core\Authorization\Voter\RoleHierarchyVoter"
ACCESS DENIED
"App\Security\Voter\EntryCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
26 DENIED moderate
App\Entity\EntryComment {#2125
  +user: App\Entity\User {#264 …}
  +entry: Proxies\__CG__\App\Entity\Entry {#2165 …}
  +magazine: Proxies\__CG__\App\Entity\Magazine {#2041 …}
  +image: null
  +parent: null
  +root: null
  +body: "`pass` would meet your requirements. It is a super simple implementation of a password manager levying PGP for encryption and git for syncing. You can therefore use any git server for syncing. There are browser extensions for autofill etc and scripts to import/export passwords etc."
  +lang: "en"
  +isAdult: false
  +favouriteCount: 0
  +score: 0
  +lastActive: DateTime @1689072691 {#2071
    date: 2023-07-11 12:51:31.0 +02:00
  }
  +ip: null
  +tags: null
  +mentions: [
    "@001100010010@lemmy.dbzer0.com"
  ]
  +children: Doctrine\ORM\PersistentCollection {#2104 …}
  +nested: Doctrine\ORM\PersistentCollection {#2099 …}
  +votes: Doctrine\ORM\PersistentCollection {#2108 …}
  +reports: Doctrine\ORM\PersistentCollection {#2101 …}
  +favourites: Doctrine\ORM\PersistentCollection {#2109 …}
  +notifications: Doctrine\ORM\PersistentCollection {#2106 …}
  -id: 10819
  -bodyTs: "'autofil':38 'browser':35 'encrypt':19 'etc':39,45 'extens':36 'git':21,29 'implement':11 'import/export':43 'levi':16 'manag':15 'meet':3 'pass':1 'password':14,44 'pgp':17 'requir':5 'script':41 'server':30 'simpl':10 'super':9 'sync':23,32 'therefor':26 'use':27 'would':2"
  +ranking: 0
  +commentCount: 0
  +upVotes: 0
  +downVotes: 0
  +visibility: "visible             "
  +apId: "https://lemmy.ml/comment/1450302"
  +editedAt: null
  +createdAt: DateTimeImmutable @1689072691 {#2066
    date: 2023-07-11 12:51:31.0 +02:00
  }
}
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryCommentVoter"
ACCESS DENIED
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
27 DENIED edit
App\Entity\EntryComment {#2125
  +user: App\Entity\User {#264 …}
  +entry: Proxies\__CG__\App\Entity\Entry {#2165 …}
  +magazine: Proxies\__CG__\App\Entity\Magazine {#2041 …}
  +image: null
  +parent: null
  +root: null
  +body: "`pass` would meet your requirements. It is a super simple implementation of a password manager levying PGP for encryption and git for syncing. You can therefore use any git server for syncing. There are browser extensions for autofill etc and scripts to import/export passwords etc."
  +lang: "en"
  +isAdult: false
  +favouriteCount: 0
  +score: 0
  +lastActive: DateTime @1689072691 {#2071
    date: 2023-07-11 12:51:31.0 +02:00
  }
  +ip: null
  +tags: null
  +mentions: [
    "@001100010010@lemmy.dbzer0.com"
  ]
  +children: Doctrine\ORM\PersistentCollection {#2104 …}
  +nested: Doctrine\ORM\PersistentCollection {#2099 …}
  +votes: Doctrine\ORM\PersistentCollection {#2108 …}
  +reports: Doctrine\ORM\PersistentCollection {#2101 …}
  +favourites: Doctrine\ORM\PersistentCollection {#2109 …}
  +notifications: Doctrine\ORM\PersistentCollection {#2106 …}
  -id: 10819
  -bodyTs: "'autofil':38 'browser':35 'encrypt':19 'etc':39,45 'extens':36 'git':21,29 'implement':11 'import/export':43 'levi':16 'manag':15 'meet':3 'pass':1 'password':14,44 'pgp':17 'requir':5 'script':41 'server':30 'simpl':10 'super':9 'sync':23,32 'therefor':26 'use':27 'would':2"
  +ranking: 0
  +commentCount: 0
  +upVotes: 0
  +downVotes: 0
  +visibility: "visible             "
  +apId: "https://lemmy.ml/comment/1450302"
  +editedAt: null
  +createdAt: DateTimeImmutable @1689072691 {#2066
    date: 2023-07-11 12:51:31.0 +02:00
  }
}
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryCommentVoter"
ACCESS DENIED
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details
28 DENIED moderate
App\Entity\EntryComment {#2125
  +user: App\Entity\User {#264 …}
  +entry: Proxies\__CG__\App\Entity\Entry {#2165 …}
  +magazine: Proxies\__CG__\App\Entity\Magazine {#2041 …}
  +image: null
  +parent: null
  +root: null
  +body: "`pass` would meet your requirements. It is a super simple implementation of a password manager levying PGP for encryption and git for syncing. You can therefore use any git server for syncing. There are browser extensions for autofill etc and scripts to import/export passwords etc."
  +lang: "en"
  +isAdult: false
  +favouriteCount: 0
  +score: 0
  +lastActive: DateTime @1689072691 {#2071
    date: 2023-07-11 12:51:31.0 +02:00
  }
  +ip: null
  +tags: null
  +mentions: [
    "@001100010010@lemmy.dbzer0.com"
  ]
  +children: Doctrine\ORM\PersistentCollection {#2104 …}
  +nested: Doctrine\ORM\PersistentCollection {#2099 …}
  +votes: Doctrine\ORM\PersistentCollection {#2108 …}
  +reports: Doctrine\ORM\PersistentCollection {#2101 …}
  +favourites: Doctrine\ORM\PersistentCollection {#2109 …}
  +notifications: Doctrine\ORM\PersistentCollection {#2106 …}
  -id: 10819
  -bodyTs: "'autofil':38 'browser':35 'encrypt':19 'etc':39,45 'extens':36 'git':21,29 'implement':11 'import/export':43 'levi':16 'manag':15 'meet':3 'pass':1 'password':14,44 'pgp':17 'requir':5 'script':41 'server':30 'simpl':10 'super':9 'sync':23,32 'therefor':26 'use':27 'would':2"
  +ranking: 0
  +commentCount: 0
  +upVotes: 0
  +downVotes: 0
  +visibility: "visible             "
  +apId: "https://lemmy.ml/comment/1450302"
  +editedAt: null
  +createdAt: DateTimeImmutable @1689072691 {#2066
    date: 2023-07-11 12:51:31.0 +02:00
  }
}
"Scheb\TwoFactorBundle\Security\Authorization\Voter\TwoFactorInProgressVoter"
ACCESS ABSTAIN
"App\Security\Voter\EntryCommentVoter"
ACCESS DENIED
"App\Security\Voter\EntryVoter"
ACCESS ABSTAIN
"App\Security\Voter\MagazineVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageThreadVoter"
ACCESS ABSTAIN
"App\Security\Voter\MessageVoter"
ACCESS ABSTAIN
"App\Security\Voter\NotificationVoter"
ACCESS ABSTAIN
"App\Security\Voter\OAuth2UserConsentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostCommentVoter"
ACCESS ABSTAIN
"App\Security\Voter\PostVoter"
ACCESS ABSTAIN
"App\Security\Voter\UserVoter"
ACCESS ABSTAIN
Show voter details