fix: API requests with version are not tracked

This commit is contained in:
Sergey Motornyuk 2022-08-25 15:51:51 +03:00
parent 48fb119c71
commit 8c6c173583
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ ga.add_url_rule(
view_func=action,
)
ga.add_url_rule(
u"/<int(min=3, max={0}):ver>/action/<logic_function>".format(
"/api/<int(min=3, max={0}):ver>/action/<logic_function>".format(
api.API_MAX_VERSION
),
methods=["GET", "POST"],