ADD export button calling backend to process clip

This commit is contained in:
2025-05-24 16:47:57 +02:00
parent e86723496e
commit 2bc4a6af33
6 changed files with 27 additions and 24 deletions

View File

@@ -3,9 +3,13 @@ package com.ddf.vodsystem.services;
import com.ddf.vodsystem.entities.VideoMetadata;
import com.ddf.vodsystem.entities.Job;
import com.ddf.vodsystem.entities.JobStatus;
import com.vaadin.flow.server.auth.AnonymousAllowed;
import com.vaadin.hilla.Endpoint;
import org.springframework.stereotype.Service;
@Service
@Endpoint
@AnonymousAllowed
public class EditService {
private final JobService jobService;