You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the user, it would be really nice to be able to set up a config file that has the necessary information (client id, client secret, etc.). This is easy to implement, but the issue comes with trying to create a command to generate the config file. Currently, the auth logic is executed directly in the "main" group call and there is no way to circumvent that happening. Because the config command shouldn't care about the auth, we can't implement.
See here and here for implementation ideas - basically need to chain together commands and create a decorator to apply to commands where we don't want this behavior.
The text was updated successfully, but these errors were encountered:
For the user, it would be really nice to be able to set up a config file that has the necessary information (client id, client secret, etc.). This is easy to implement, but the issue comes with trying to create a command to generate the config file. Currently, the auth logic is executed directly in the "main" group call and there is no way to circumvent that happening. Because the config command shouldn't care about the auth, we can't implement.
See here and here for implementation ideas - basically need to chain together commands and create a decorator to apply to commands where we don't want this behavior.
The text was updated successfully, but these errors were encountered: