diff options
author | Julius Härtl <jus@bitgrid.net> | 2019-09-06 13:59:41 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2019-09-09 22:56:05 +0200 |
commit | 32279ed062b92e58c45cc87d0ecab41075cad3dc (patch) | |
tree | f949c55160710540e9f35fd8dce4c1b5f671c14c /apps/workflowengine/lib/Check/RequestUserAgent.php | |
parent | 5891ec602f45cebd7d991814c2ca57929f9085ed (diff) | |
download | nextcloud-server-32279ed062b92e58c45cc87d0ecab41075cad3dc.tar.gz nextcloud-server-32279ed062b92e58c45cc87d0ecab41075cad3dc.zip |
Extend missing check classes
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/workflowengine/lib/Check/RequestUserAgent.php')
-rw-r--r-- | apps/workflowengine/lib/Check/RequestUserAgent.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/workflowengine/lib/Check/RequestUserAgent.php b/apps/workflowengine/lib/Check/RequestUserAgent.php index 2b2e3015557..1abb56bbe2d 100644 --- a/apps/workflowengine/lib/Check/RequestUserAgent.php +++ b/apps/workflowengine/lib/Check/RequestUserAgent.php @@ -24,6 +24,7 @@ namespace OCA\WorkflowEngine\Check; use OCP\IL10N; use OCP\IRequest; +use OCP\WorkflowEngine\IManager; class RequestUserAgent extends AbstractStringCheck { @@ -83,4 +84,5 @@ class RequestUserAgent extends AbstractStringCheck { public function isAvailableForScope(int $scope): bool { return true; } + } |