Skip to content
Snippets Groups Projects
Commit 00ad7d48 authored by Björn Schießle's avatar Björn Schießle
Browse files

add activity priorities to core so that other apps can reuse it

parent 154628da
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,13 @@
namespace OCP\Activity;
interface IExtension {
const PRIORITY_VERYLOW = 10;
const PRIORITY_LOW = 20;
const PRIORITY_MEDIUM = 30;
const PRIORITY_HIGH = 40;
const PRIORITY_VERYHIGH = 50;
/**
* The extension can return an array of additional notification types.
* If no additional types are to be added false is to be returned
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment