-
Notifications
You must be signed in to change notification settings - Fork 939
feat: Move workspaces under organizations #1109
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
Codecov Report
@@ Coverage Diff @@
## main #1109 +/- ##
==========================================
- Coverage 66.34% 66.18% -0.16%
==========================================
Files 257 261 +4
Lines 16055 16476 +421
Branches 156 156
==========================================
+ Hits 10652 10905 +253
- Misses 4311 4434 +123
- Partials 1092 1137 +45
Continue to review full report at Codecov.
|
This removes split ownership for workspaces. They are now a resource of organizations and have a designated owner, which is a user. This enables simple administration for commands like: - `coder stop ben/dev` - `coder build logs colin/arch` or if we decide to allow administrators to access workspaces, they could even SSH using this syntax: `coder ssh colin/dev`.
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.
Overall sweet. Love this resource division at the org scope.
For the use case of creating a workspace for another user, I think we should just rely on masquerading 👍
I only left minor nits. Will approve when you get to respond @kylecarbs. Wanted to get a response on a few before I approve and auto merge takes over |
@Emyrk all fixed up! |
I'll leave this one to Steven |
This removes split ownership for workspaces. They are now a resource of organizations and have a designated owner, which is a user. This enables simple administration for commands like: - `coder stop ben/dev` - `coder build logs colin/arch` or if we decide to allow administrators to access workspaces, they could even SSH using this syntax: `coder ssh colin/dev`.
This removes split ownership for workspaces. They are now
a resource of organizations and have a designated owner,
which is a user.
This enables simple administration for commands like:
coder stop ben/dev
coder build logs colin/arch
or if we decide to allow administrators to access workspaces,
they could even SSH using this syntax:
coder ssh colin/dev
.