Welcome to mirror list, hosted at ThFree Co, Russian Federation.

main.js « src - github.com/nextcloud/files_automatedtagging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6276ac698cfc7fe9b4f1fcf7247180c57376f575 (plain)
1
2
3
4
5
6
7
8
9
10
import Tag from './Tag.vue'

window.OCA.WorkflowEngine.registerOperator({
	id: 'OCA\\FilesAutomatedTagging\\Operation',
	name: t('files_automatedtagging', 'Tag a file'),
	description: t('files_automatedtagging'),
	color: 'var(--color-success)',
	operation: '',
	options: Tag,
})