From: Julius Härtl Date: Tue, 4 Aug 2020 05:51:14 +0000 (+0200) Subject: Add base renderAs template X-Git-Tag: v20.0.0beta1~134^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F22097%2Fhead;p=nextcloud-server.git Add base renderAs template Signed-off-by: Julius Härtl --- diff --git a/lib/public/AppFramework/Http/TemplateResponse.php b/lib/public/AppFramework/Http/TemplateResponse.php index 9622d9696dc..3885f57aaa1 100644 --- a/lib/public/AppFramework/Http/TemplateResponse.php +++ b/lib/public/AppFramework/Http/TemplateResponse.php @@ -46,6 +46,10 @@ class TemplateResponse extends Response { * @since 20.0.0 */ public const RENDER_AS_BLANK = ''; + /** + * @since 20.0.0 + */ + public const RENDER_AS_BASE = 'base'; /** * @since 20.0.0 */ @@ -188,6 +192,7 @@ class TemplateResponse extends Response { } elseif (in_array($this->renderAs, [ self::RENDER_AS_GUEST, self::RENDER_AS_BLANK, + self::RENDER_AS_BASE, self::RENDER_AS_ERROR, self::RENDER_AS_PUBLIC, self::RENDER_AS_USER], true)) {