diff options
author | Joas Schilling <coding@schilljs.com> | 2023-07-25 11:48:21 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2023-07-27 09:57:52 +0200 |
commit | 1b387bb341d2ecf15b7cd3c946ceb9a33a984af7 (patch) | |
tree | afb9c21a9abf20efc682c32b6d1b02516f1ac1d0 /lib/public/AppFramework | |
parent | 5bb6a7804f051111606be094f6ee183db0e3d2c7 (diff) | |
download | nextcloud-server-1b387bb341d2ecf15b7cd3c946ceb9a33a984af7.tar.gz nextcloud-server-1b387bb341d2ecf15b7cd3c946ceb9a33a984af7.zip |
fix!: Remove legacy event dispatching Symfony's GenericEvent from AdditionalScripts
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public/AppFramework')
-rw-r--r-- | lib/public/AppFramework/Http/TemplateResponse.php | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/public/AppFramework/Http/TemplateResponse.php b/lib/public/AppFramework/Http/TemplateResponse.php index 0364ba10e50..627906fcc20 100644 --- a/lib/public/AppFramework/Http/TemplateResponse.php +++ b/lib/public/AppFramework/Http/TemplateResponse.php @@ -66,15 +66,6 @@ class TemplateResponse extends Response { public const RENDER_AS_PUBLIC = 'public'; /** - * @deprecated 20.0.0 use OCP\AppFramework\Http\Events\BeforeTemplateRenderedEvent - */ - public const EVENT_LOAD_ADDITIONAL_SCRIPTS = self::class . '::loadAdditionalScripts'; - /** - * @deprecated 20.0.0 use OCP\AppFramework\Http\Events\BeforeTemplateRenderedEvent - */ - public const EVENT_LOAD_ADDITIONAL_SCRIPTS_LOGGEDIN = self::class . '::loadAdditionalScriptsLoggedIn'; - - /** * name of the template * @var string */ |