mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	feat(server): resume queues (#2104)
* feat(server): resume queues * chore: regenerate open-api
This commit is contained in:
		
							
								
								
									
										3
									
								
								mobile/openapi/lib/model/job_command.dart
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										3
									
								
								mobile/openapi/lib/model/job_command.dart
									
									
									
										generated
									
									
									
								
							| @@ -25,12 +25,14 @@ class JobCommand { | ||||
| 
 | ||||
|   static const start = JobCommand._(r'start'); | ||||
|   static const pause = JobCommand._(r'pause'); | ||||
|   static const resume = JobCommand._(r'resume'); | ||||
|   static const empty = JobCommand._(r'empty'); | ||||
| 
 | ||||
|   /// List of all possible values in this [enum][JobCommand]. | ||||
|   static const values = <JobCommand>[ | ||||
|     start, | ||||
|     pause, | ||||
|     resume, | ||||
|     empty, | ||||
|   ]; | ||||
| 
 | ||||
| @@ -72,6 +74,7 @@ class JobCommandTypeTransformer { | ||||
|       switch (data.toString()) { | ||||
|         case r'start': return JobCommand.start; | ||||
|         case r'pause': return JobCommand.pause; | ||||
|         case r'resume': return JobCommand.resume; | ||||
|         case r'empty': return JobCommand.empty; | ||||
|         default: | ||||
|           if (!allowNull) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user