Move background detect settings into SlideScan

This commit is contained in:
Julian Stirling 2026-03-08 16:15:29 +00:00
parent bfef998300
commit 4da05b1869
7 changed files with 59 additions and 171 deletions

View file

@ -140,7 +140,7 @@ class ActionButton(BaseModel):
action: str
"""The name of the action to be triggered."""
poll_interval: int = 1
poll_interval: float = 1
"""The interval for polling in seconds."""
submit_label: str = "Submit"
@ -171,6 +171,12 @@ class ActionButton(BaseModel):
notify_on_success: bool = False
"""Specify whether to a notification on successful completion."""
response_is_success_message: bool = False
"""Set True to use the action response as the success message.
If set ``success_message`` has is never used.
"""
success_message: str = "Success!"
"""The message to show on successful completion."""