aboutsummaryrefslogtreecommitdiffstats
path: root/tsconfig.json
Commit message (Expand)AuthorAgeFilesLines
* test: Add proper styles for Cypress component testsFerdinand Thiessen2024-10-291-0/+1
* chore: Move from Jest to vitestFerdinand Thiessen2024-08-261-2/+2
* fix: Adjust code to be Vue 2.7 compatible as `key` on `<template>` is Vue3 onlyFerdinand Thiessen2023-12-031-1/+4
* fix(config): Adjust typescript config to allow `.ts` imports and Typescript i...Ferdinand Thiessen2023-11-271-3/+7
* fix(cypress): Adjust admin theming tests for new `@nextcloud/vue` releaseFerdinand Thiessen2023-11-141-1/+1
* tests: Add accessibility tests for CSS color variablesFerdinand Thiessen2023-10-271-1/+1
* chore: upgrade typescript, eslint and fix lintJohn Molakvoæ2023-06-271-1/+2
* feat: add sidebar action testingJohn Molakvoæ2023-06-211-1/+1
* feat(files_trashbin): migrate to vueJohn Molakvoæ2023-04-061-2/+2
* Port Files navigation to vueJohn Molakvoæ2023-01-041-6/+9
* Extract colour from custom backgroundJohn Molakvoæ2022-11-291-0/+22
0DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
<?php

declare(strict_types=1);

/**
 * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */

namespace OCP\Notification;

/**
 * Thrown when {@see \OCP\Notification\IManager::prepare()} is called with a notification
 * that does not have all required fields set at the end of the manager or after a INotifier
 * that claimed to have parsed the notification.
 *
 * Required fields are:
 *
 * - app
 * - user
 * - dateTime
 * - objectType
 * - objectId
 * - parsedSubject
 *
 * @since 30.0.0
 */
class IncompleteParsedNotificationException extends \InvalidArgumentException {
}