-
Notifications
You must be signed in to change notification settings - Fork 111
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
feat: ccsync url input is added #429
base: main
Are you sure you want to change the base?
feat: ccsync url input is added #429
Conversation
@@ -3,7 +3,7 @@ import 'package:shared_preferences/shared_preferences.dart'; | |||
class CredentialsStorage { | |||
static const String _encryptionSecretKey = 'encryptionSecret'; | |||
static const String _clientIdKey = 'clientId'; | |||
|
|||
static const String _apiUrlKey = 'championApiUrl'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that championApiUrl must be replaced with ccsyncBackendUrl, as it would be much more intuitive. championApi somewhat points towards the sync server instead
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
@@ -13,6 +13,7 @@ class ManageTaskChampionCreds extends StatelessWidget { | |||
final TextEditingController _encryptionSecretController = | |||
TextEditingController(); | |||
final TextEditingController _clientIdController = TextEditingController(); | |||
final TextEditingController _championApiUrlController = TextEditingController(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change this to something like ccsyncBackendUrlController as well
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please make these changes
@its-me-abhishek do we have to change this placeholder/label? |
Yes, the naming should be done in reference to CCSync everywhere imo |
Input is now provided so that user can input url to ccsync server
3af741a
to
94447d3
Compare
Description
Input is now provided so that user can input url to ccsync server
Fixes #392
Screenshots
Checklist