-
Notifications
You must be signed in to change notification settings - Fork 5.9k
feat(lib/vscode): add log out to application menu #2922
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
Conversation
3f5b16c
to
5274816
Compare
d77243a
to
6a05889
Compare
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.
LGTM! Just a newline at the end of lib/vscode/src/vs/server/common/cookie.ts
should be all that's needed.
So I was wondering why Turns out it was, but since we import from Since our build script, I think it might be best to just duplicate the |
Ah okay. Yeah it doesn't seem worth it to have to fix everything else for one thing to not be duplicated 😂 thanks for looking into this! I'll convert to draft and fix! |
6a05889
to
c23215f
Compare
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.
LGTM!
d80bcdf
to
7958d52
Compare
1697e49
to
5596f97
Compare
Love this! |
This adds a new option to the Application Menu called Log out. It deletes the code-server cookie and logs a user out.
806022a
to
090687d
Compare
Nice! Just a thought - can you also add it to the profile icon at the bottom of the left sidebar? That seems like the most intuitive place to look for it. |
@binaryfire thanks for the suggestion! There's some issues with the profile icon (see #2913) but when we work on that, we can consider it! Feel free to leave more thoughts there |
nice feature! Hope it is okay to put this in here... thanks |
@dual-oo there were a couple bugs fixed in #3277 We're cutting a new release this week so make sure to upgrade and if you have issues, please open a bug report! |
This adds a new option to the Application Menu called Log out. It deletes the code-server cookie and logs a user out.
Screenshot
TODOs
Cookie
to be inlib/vscode
so we can use itCookie
and don't share betweenlib/vscode
Fixes #778