Skip to content
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

v1.8.6 #4729

Merged
merged 24 commits into from
Jul 24, 2024
Merged

v1.8.6 #4729

Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
0325e2a
Label error handling tweaks (#4687)
teodosii Jul 17, 2024
65a794a
PR template: "Closes" -> "Related to" (#4693)
vstpme Jul 17, 2024
49d1127
Fix `send_bundled_notification` task (#4696)
Ferril Jul 17, 2024
4e03732
Drop stale metrics cache (#4695)
Ferril Jul 17, 2024
dd84aa1
Add missing app_type argument to uninstall request (#4700)
Konstantinov-Innokentii Jul 18, 2024
7777a60
Handle multiple unpage event logs when getting paged users (#4698)
matiasb Jul 18, 2024
1c33964
Update schedule events internal API to return default priority level …
matiasb Jul 18, 2024
8d82b07
Cleanup and split tiltfile by profiles (#4691)
brojd Jul 19, 2024
1465db3
Support stack header from chatops-proxy (#4578)
Konstantinov-Innokentii Jul 19, 2024
87d7982
Unified Slack app reinstall (#4682)
vstpme Jul 19, 2024
1491e28
Update regex to jinja route conversion to correctly escape double quo…
matiasb Jul 19, 2024
ab700fd
Update OrderedModel serializer not to save previously updated order (…
matiasb Jul 19, 2024
ec360f0
Fix bug for incorrect arguments used to invoke cleanup_empty_deleted_…
mderynck Jul 19, 2024
696aca2
Make it clear alert groups can't be searched (#4713)
vstpme Jul 22, 2024
1c88107
Fix slack app redirect (#4714)
Konstantinov-Innokentii Jul 22, 2024
4438443
hide forbidden actions from Add menu in schedule (#4708)
brojd Jul 22, 2024
a558703
AG filters (#4718)
teodosii Jul 23, 2024
a53f207
Alert group search feature flags (#4579)
vstpme Jul 23, 2024
ed57c30
Prepare for changes to OnCall plugin initialization (#4715)
mderynck Jul 23, 2024
53556bd
show chatops proxy error (#4719)
brojd Jul 24, 2024
4877b9d
Set unique key on each rendered route (#4721)
teodosii Jul 24, 2024
94219c2
Introduce slash command matcher (#4717)
Konstantinov-Innokentii Jul 24, 2024
9da5b94
Fix app redirect (#4725)
Konstantinov-Innokentii Jul 24, 2024
b27a158
Fix `/escalate` predefined org (#4723)
vstpme Jul 24, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix app redirect (#4725)
Konstantinov-Innokentii authored Jul 24, 2024
commit 9da5b94455be75ff2a114d246adfecdd96f582f8
2 changes: 1 addition & 1 deletion engine/apps/chatops_proxy/utils.py
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ def get_installation_link_from_chatops_proxy(user) -> typing.Optional[str]:
link, _ = client.get_slack_oauth_link(
org.stack_id,
user.user_id,
urljoin(org.web_link, "settings?tab=TeamsSettings&chatOpsTab=Slack"),
urljoin(org.web_link, "settings?tab=ChatOps&chatOpsTab=Slack"),
APP_TYPE_ONCALL,
)
return link