diff options
author | Peter Braun <pbraun@redhat.com> | 2024-09-13 22:40:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-13 22:40:45 +0200 |
commit | cc6a0612dae436a7b80a7c9837d7c2bafacc064f (patch) | |
tree | 39f8345b4b041aaa3cba7fab1c47c3ca654a94cf | |
parent | ๐งช๐ Categorize the Codecov status checks (#15516) (diff) | |
download | awx-cc6a0612dae436a7b80a7c9837d7c2bafacc064f.tar.xz awx-cc6a0612dae436a7b80a7c9837d7c2bafacc064f.zip |
fix: change to url in platform ui (#15518)
-rw-r--r-- | awx/main/models/jobs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/awx/main/models/jobs.py b/awx/main/models/jobs.py index a1982d1ac0..307e49aaa6 100644 --- a/awx/main/models/jobs.py +++ b/awx/main/models/jobs.py @@ -1275,7 +1275,7 @@ class SystemJob(UnifiedJob, SystemJobOptions, JobNotificationMixin): return reverse('api:system_job_detail', kwargs={'pk': self.pk}, request=request) def get_ui_url(self): - return urljoin(settings.TOWER_URL_BASE, "{}/jobs/system/{}".format(settings.OPTIONAL_UI_URL_PREFIX, self.pk)) + return urljoin(settings.TOWER_URL_BASE, "{}/jobs/management/{}".format(settings.OPTIONAL_UI_URL_PREFIX, self.pk)) @property def event_class(self): |