Skip to content

Commit

Permalink
Removed subdomain for domain summary
Browse files Browse the repository at this point in the history
MINOR
  • Loading branch information
TheBoatyMcBoatFace committed Aug 10, 2023
1 parent e64f7d8 commit 698a71b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/api/domain/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
@domain_bp.route('/summary', methods=['GET'])
def domain_summary():
raw_domain = request.args.get('domain', 'nasa.gov')
domain = f"%{raw_domain}"
domain = f"{raw_domain}"
sql_file = "app/api/database/postgres/queries/domain/summary.sql"

# Read sql file
Expand Down

0 comments on commit 698a71b

Please sign in to comment.