-
-
Notifications
You must be signed in to change notification settings - Fork 37.5k
Add next_flow to Repair Flows
#165091
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
iluvdata
wants to merge
36
commits into
home-assistant:dev
Choose a base branch
from
iluvdata:repair-flow-next-flow
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Add next_flow to Repair Flows
#165091
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
781ec62
add next-flow to repairs
iluvdata c657339
add tests repairs flow fix next flow
iluvdata 287c921
add next_flow to async_create_entry
iluvdata 70ce27c
Merge remote-tracking branch 'upstream/dev' into repair-flow-next-flow
iluvdata 9bd1c31
Merge branch 'home-assistant:dev' into repair-flow-next-flow
iluvdata 2d05ad8
Merge branch 'repair-flow-next-flow' of https://github.com/iluvdata/h…
iluvdata 649b3ed
comment grammar error
iluvdata 9de1d4c
Update tests/components/repairs/test_websocket_api.py
iluvdata 65d1b0c
Update tests/components/repairs/test_websocket_api.py
iluvdata 453c862
suggested edits
iluvdata 9239847
suggested fixes
iluvdata aba15cb
Move FlowType to NextFlowType
iluvdata dd23f75
Move FlowType to NextFlowType
iluvdata 55a1edd
Merge branch 'home-assistant:dev' into repair-flow-next-flow
iluvdata 4af986d
Merge branch 'home-assistant:dev' into repair-flow-next-flow
iluvdata 5ddcb7c
Address mypy error, don't delete issues with next_flow
iluvdata 0eeb6ab
change tests for repairs with next_flows (issues remain in registry)
iluvdata 8454a60
Merge remote-tracking branch 'upstream/dev' into repair-flow-next-flow
iluvdata 4f1da34
Add repair flows that trigger other different repair flows via next_flow
iluvdata 0d65b9a
Add next_flow specificying repair_flow as the next_flow in repair flows
iluvdata 2cb8163
Move all relevant methods to issue_handler.py and various grammar upd…
iluvdata ed18a35
Minor copilot review code changes
iluvdata 3441f50
Merge branch 'dev' of https://github.com/home-assistant/core into rep…
iluvdata 41cf6a4
Resolve merge conflicts
iluvdata 2d43119
add copilot review changes
iluvdata 72744d0
minor updates (revised tests)
iluvdata 1a7d273
Merge branch 'dev' into repair-flow-next-flow
iluvdata 7e45d2e
Merge branch 'home-assistant:dev' into repair-flow-next-flow
iluvdata 67496ea
Add UnknownIssue Error, Fix Generic FlowResult Type in _BaseFlowManag…
iluvdata 88258be
Remove setting flow.handler as overwritten anyway in super().async_in…
iluvdata 2e03884
Add copilot edits
iluvdata b6100bf
Merge branch 'dev' of https://github.com/home-assistant/core into rep…
iluvdata fc1e169
Revert anthropic patch
iluvdata dba8ba4
comment clarification based on copilot review
iluvdata 66657a2
Potential fix for pull request finding
iluvdata 35be68a
ruff format error fix
iluvdata File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,14 @@ | ||
| """Constants for the Repairs integration.""" | ||
|
|
||
| from enum import StrEnum | ||
|
|
||
| DOMAIN = "repairs" | ||
|
|
||
|
|
||
| class FlowType(StrEnum): | ||
| """FlowType to support additional next flow types for repairs.""" | ||
|
|
||
| CONFIG_FLOW = "config_flow" | ||
| OPTIONS_FLOW = "options_flow" | ||
| CONFIG_SUBENTRIES_FLOW = "config_subentries_flow" | ||
| REPAIRS_FLOW = "repairs_flow" | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.