Skip to content

Commit 3f4dca2

Browse files
authored
rename loginv2 to login (#4486)
* rename loginv2 to login * reflex-hosting-cli bump to 0.1.29 * relock deps
1 parent 1277100 commit 3f4dca2

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

poetry.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ wrapt = [
4949
{version = ">=1.11.0,<2.0", python = "<3.11"},
5050
]
5151
packaging = ">=23.1,<25.0"
52-
reflex-hosting-cli = ">=0.1.28,<2.0"
52+
reflex-hosting-cli = ">=0.1.29,<2.0"
5353
charset-normalizer = ">=3.3.2,<4.0"
5454
wheel = ">=0.42.0,<1.0"
5555
build = ">=1.0.3,<2.0"

reflex/reflex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ def login(loglevel: constants.LogLevel = typer.Option(config.loglevel)):
337337

338338
validated_info = hosting_cli.login()
339339
if validated_info is not None:
340-
telemetry.send("loginv2", user_uuid=validated_info.get("user_id"))
340+
telemetry.send("login", user_uuid=validated_info.get("user_id"))
341341

342342

343343
@cli.command()

reflex/utils/prerequisites.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1413,7 +1413,7 @@ def validate_and_create_app_using_remote_template(app_name, template, templates)
14131413
authenticated_token = hosting.authenticated_token()
14141414
if not authenticated_token or not authenticated_token[0]:
14151415
console.print(
1416-
f"Please use `reflex loginv2` to access the '{template}' template."
1416+
f"Please use `reflex login` to access the '{template}' template."
14171417
)
14181418
raise typer.Exit(3)
14191419

0 commit comments

Comments
 (0)