diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2019-08-16 17:17:38 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2019-09-09 22:56:01 +0200 |
commit | bd5c455da4d79458906549082b49b0b83deebee8 (patch) | |
tree | 65933c5334ba8e210033dafce9e1c6bd05354911 /lib/public | |
parent | 804d4fe69feb1853846ad7a4b92f01cc637daf71 (diff) | |
download | nextcloud-server-bd5c455da4d79458906549082b49b0b83deebee8.tar.gz nextcloud-server-bd5c455da4d79458906549082b49b0b83deebee8.zip |
the workflow manager becomes scope aware, Part 1
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/WorkflowEngine/IManager.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/public/WorkflowEngine/IManager.php b/lib/public/WorkflowEngine/IManager.php index 33a1dd1bb6c..c05459e1fb4 100644 --- a/lib/public/WorkflowEngine/IManager.php +++ b/lib/public/WorkflowEngine/IManager.php @@ -33,6 +33,10 @@ use OCP\Files\Storage\IStorage; * @since 9.1 */ interface IManager { + + const SCOPE_ADMIN = 0; + const SCOPE_USER = 1; + /** * @param IStorage $storage * @param string $path |