Skip to content

Commit

Permalink
Merge pull request #425 from yogeshojha/424-it-is-impossible-to-creat…
Browse files Browse the repository at this point in the history
…e-a-scan-wi

Fixed #424
  • Loading branch information
yogeshojha committed Aug 15, 2021
2 parents 375b497 + e98fb52 commit 8f710ac
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ services:
- tool_config:/root/.config
- static_volume:/usr/src/app/staticfiles/
environment:
- DEBUG=1
- DEBUG=0
- CELERY_BROKER=redis://redis:6379/0
- CELERY_BACKEND=redis://redis:6379/0
- POSTGRES_DB=${POSTGRES_DB}
Expand All @@ -55,7 +55,7 @@ services:
build: ./web
command: celery -A reNgine beat -l INFO --scheduler django_celery_beat.schedulers:DatabaseScheduler
environment:
- DEBUG=1
- DEBUG=0
- POSTGRES_DB=${POSTGRES_DB}
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
Expand All @@ -80,7 +80,7 @@ services:
restart: always
image: docker.pkg.github.com/yogeshojha/rengine/rengine:latest
environment:
- DEBUG=1
- DEBUG=0
- CELERY_BROKER=redis://redis:6379/0
- CELERY_BACKEND=redis://redis:6379/0
- POSTGRES_DB=${POSTGRES_DB}
Expand Down
2 changes: 1 addition & 1 deletion web/targetApp/static/targetApp/js/custom_domain.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function scanMultipleTargets() {
else {
// atleast one target is selected
multipleScanForm = document.getElementById("multiple_targets_form");
multipleScanForm.action = '../../start_scan/start/multiple/';
multipleScanForm.action = '../../scan/start/multiple/';
multipleScanForm.submit();
}
}
Expand Down
2 changes: 1 addition & 1 deletion web/targetApp/templates/target/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ <h5 class="mb-2">Filters</h5>
<div id="filteringText">
</div>
</div>
<form method="POST" id="multiple_targets_form" action="../../start_scan/start/multiple/">
<form method="POST" id="multiple_targets_form" action="../../scan/start/multiple/">
{% csrf_token %}
<div class="table-responsive mt-4 mb-4">
<table id="list_target_table" class="table">
Expand Down

0 comments on commit 8f710ac

Please sign in to comment.