Browse Source

Fix linter warnings in workflowengine

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
pull/20867/head
Roeland Jago Douma 6 years ago
committed by npmbuildbot[bot]
parent
commit
e3bb6b69ea
  1. 40
      apps/workflowengine/js/workflowengine.js
  2. 2
      apps/workflowengine/js/workflowengine.js.map
  3. 5
      apps/workflowengine/src/components/Checks/FileMimeType.vue
  4. 3
      apps/workflowengine/src/components/Checks/RequestUserGroup.vue
  5. 3
      apps/workflowengine/src/helpers/api.js

40
apps/workflowengine/js/workflowengine.js
File diff suppressed because it is too large
View File

2
apps/workflowengine/js/workflowengine.js.map
File diff suppressed because it is too large
View File

5
apps/workflowengine/src/components/Checks/FileMimeType.vue

@ -53,6 +53,7 @@
<script>
import Multiselect from '@nextcloud/vue/dist/Components/Multiselect'
import valueMixin from './../../mixins/valueMixin'
import { imagePath } from '@nextcloud/router'
export default {
name: 'FileMimeType',
@ -76,12 +77,12 @@ export default {
pattern: '/image\\/.*/',
},
{
iconUrl: OC.imagePath('core', 'filetypes/x-office-document'),
iconUrl: imagePath('core', 'filetypes/x-office-document'),
label: t('workflowengine', 'Office documents'),
pattern: '/(vnd\\.(ms-|openxmlformats-).*)$/',
},
{
iconUrl: OC.imagePath('core', 'filetypes/application-pdf'),
iconUrl: imagePath('core', 'filetypes/application-pdf'),
label: t('workflowengine', 'PDF documents'),
pattern: 'application/pdf',
},

3
apps/workflowengine/src/components/Checks/RequestUserGroup.vue

@ -36,6 +36,7 @@
<script>
import Multiselect from '@nextcloud/vue/dist/Components/Multiselect'
import axios from '@nextcloud/axios'
import { generateOcsUrl } from '@nextcloud/router'
const groups = []
const status = {
@ -83,7 +84,7 @@ export default {
}
this.status.isLoading = true
return axios.get(OC.linkToOCS('cloud', 2) + 'groups?limit=20&search=' + encodeURI(searchQuery)).then((response) => {
return axios.get(generateOcsUrl('cloud', 2) + 'groups?limit=20&search=' + encodeURI(searchQuery)).then((response) => {
response.data.ocs.data.groups.reduce((obj, item) => {
obj.push({
id: item,

3
apps/workflowengine/src/helpers/api.js

@ -21,11 +21,12 @@
*/
import { loadState } from '@nextcloud/initial-state'
import { generateOcsUrl } from '@nextcloud/router'
const scopeValue = loadState('workflowengine', 'scope') === 0 ? 'global' : 'user'
const getApiUrl = (url) => {
return OC.linkToOCS('apps/workflowengine/api/v1/workflows', 2) + scopeValue + url + '?format=json'
return generateOcsUrl('apps/workflowengine/api/v1/workflows', 2) + scopeValue + url + '?format=json'
}
export {

Loading…
Cancel
Save