Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: change auth org #518

Merged
merged 2 commits into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion godot/export_presets.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ architectures/armeabi-v7a=false
architectures/arm64-v8a=true
architectures/x86=false
architectures/x86_64=true
version/code=17
version/code=18
version/name="1.0"
package/unique_name="org.decentraland.godotexplorer"
package/name="Decentraland"
Expand Down
4 changes: 2 additions & 2 deletions lib/src/auth/decentraland_auth_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ use crate::godot_classes::dcl_tokio_rpc::GodotTokioCall;

use super::wallet::SimpleAuthChain;

const AUTH_FRONT_URL: &str = "https://decentraland.zone/auth/requests";
const AUTH_SERVER_ENDPOINT_URL: &str = "https://auth-api.decentraland.zone/requests";
const AUTH_FRONT_URL: &str = "https://decentraland.org/auth/requests";
const AUTH_SERVER_ENDPOINT_URL: &str = "https://auth-api.decentraland.org/requests";
// const AUTH_FRONT_URL: &str = "https://localhost:5173/auth/requests";
// const AUTH_SERVER_ENDPOINT_URL: &str = "https://auth-api.decentraland.zone/requests";

Expand Down
Loading