Modified prompt

parent 9ae4687a
...@@ -20,4 +20,12 @@ When the user asks to update the version to a specific version number (e.g., "up ...@@ -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 - Locate the BUILD_CONFIG dictionary
- Update 'app_version': 'current_version' to 'app_version': 'target_version' - 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. 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
## 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): ...@@ -1803,7 +1803,7 @@ def oauth_callback(provider):
window.close(); window.close();
}} else {{ }} else {{
// If no opener, redirect to main page with token // 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)})); localStorage.setItem('user', JSON.stringify({json.dumps(user_dict)}));
window.location.href = '/'; 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