Modified prompt

parent 9ae4687a
......@@ -20,4 +20,12 @@ When the user asks to update the version to a specific version number (e.g., "up
- Locate the BUILD_CONFIG dictionary
- Update 'app_version': 'current_version' to 'app_version': 'target_version'
This ensures consistent version updates across all version references in the codebase, including user agent strings, application versions, version constants, and build/package metadata.
\ No newline at end of file
This ensures consistent version updates across all version references in the codebase, including user agent strings, application versions, version constants, and build/package metadata.
## WEB INTERFACES:
there are 2 differenc interfaces.
- Web dashboard: this is the application administration interface plus the interface for cashier, it is in mbetterclient/web_dashboard/, and it is server directly by the application, and eventually proxied by nginx. admin, users, and cashier all uses the web dashboard, with some differences for admin, users or cashier.
- Wensite: this is the public website used when running in --headless mode, it serves brokers and players users. it is served directly by nginx and uses the API from our application.
......@@ -1803,7 +1803,7 @@ def oauth_callback(provider):
window.close();
}} else {{
// If no opener, redirect to main page with token
localStorage.setItem('auth_token', '{token}');
localStorage.setItem('auth_token', '{token_data["access_token"]}');
localStorage.setItem('user', JSON.stringify({json.dumps(user_dict)}));
window.location.href = '/';
}}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment