mirror of
https://github.com/nextcloud/server.git
synced 2026-03-04 18:28:08 +01:00
Fix issue with unavailable operations
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
committed by
Arthur Schiwon
parent
2adcc75413
commit
928cf4bfcc
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div class="section rule" :style="{ borderLeftColor: operation.color || '' }">
|
||||
<div v-if="operation" class="section rule" :style="{ borderLeftColor: operation.color || '' }">
|
||||
<div class="trigger">
|
||||
<p>
|
||||
<span>{{ t('workflowengine', 'When') }}</span>
|
||||
|
||||
@@ -19,10 +19,11 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
const scopeValue = OCP.InitialState.loadState('workflowengine', 'scope') === 0 ? 'global' : 'user'
|
||||
|
||||
import { loadState } from '@nextcloud/initial-state'
|
||||
|
||||
const scopeValue = loadState('workflowengine', 'scope') === 0 ? 'global' : 'user'
|
||||
|
||||
const getApiUrl = (url) => {
|
||||
return OC.linkToOCS('apps/workflowengine/api/v1/workflows', 2) + scopeValue + url + '?format=json'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user