2.0.0-rc1 : Profile and achievements update.

This commit is contained in:
2026-08-09 00:50:45 +08:00
parent 562775e5db
commit 3874bf57a9
31 changed files with 2618 additions and 108 deletions
+3 -1
View File
@@ -1,5 +1,6 @@
from flask import Blueprint, render_template, request, Response
from web.services.stats_service import StatsService
from web.services.narrative_service import NarrativeService
from web.config import Config
import json
@@ -108,7 +109,8 @@ def detail(match_id):
rounds=rounds,
h2h_matrix=h2h_matrix,
round_details=round_details,
player_name_map=player_name_map)
player_name_map=player_name_map,
post_match_report=NarrativeService.get_match_report(match_id))
@bp.route('/<match_id>/raw')
def raw_json(match_id):