refactor(AppFramework): Change version to 34

This didn't manage to get into NC 33

Signed-off-by: Carl Schwan <carlschwan@kde.org>
This commit is contained in:
Carl Schwan 2026-01-28 21:47:38 +01:00
parent f81475445d
commit 8bb13df6cf
No known key found for this signature in database
GPG key ID: 02325448204E452A
2 changed files with 4 additions and 4 deletions

View file

@ -17,9 +17,9 @@ use OCP\AppFramework\Attribute\Consumable;
* Attribute for controller methods that want to disable the same site cookies
* requirements.
*
* @since 33.0.0
* @since 34.0.0
*/
#[Attribute(Attribute::TARGET_METHOD)]
#[Consumable(since: '33.0.0')]
#[Consumable(since: '34.0.0')]
class NoSameSiteCookieRequired {
}

View file

@ -21,10 +21,10 @@ use OCP\AppFramework\Attribute\Consumable;
* (use this wisely and only in two-factor auth apps, e.g. to allow setup during
* login).
*
* @since 33.0.0
* @since 34.0.0
*/
#[Attribute(Attribute::TARGET_METHOD)]
#[Consumable(since: '33.0.0')]
#[Consumable(since: '34.0.0')]
class NoTwoFactorRequired {
}