Updates links to 3rd party resources in
reporting module. This fixes graphs not
being generated.
Change-Id: I8bdb37f3b6948bc2fd09a8cf3d0b0f1588cafaf0
JIRA: STORPERF-258
Signed-off-by: Shrenik <shrenik.jain@research.iiit.ac.in>
@app.route('/reporting/3rd_party/js/<path:path>')
def js(path):
- return send_from_directory('static/js/', path)
+ return send_from_directory('static/3rd_party/js/', path)
@app.route('/reporting/3rd_party/css/<path:path>')
def css(path):
- return send_from_directory('static/css/', path)
+ return send_from_directory('static/3rd_party/css/', path)
@app.route('/reporting/images/<path:path>')