- Notifications
You must be signed in to change notification settings - Fork928
feat: allow configuring display apps from template#9100
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Uh oh!
There was an error while loading.Please reload this page.
3ef47ec
tod6f467c
CompareUh oh!
There was an error while loading.Please reload this page.
fda5adc
toa71e3c8
CompareThere 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.
The first review round is done. Good job!
Uh oh!
There was an error while loading.Please reload this page.
@@ -1,6 +1,6 @@ | |||
{ |
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.
There are many files changes intestdata
, can we limit changes to only relevant ones?
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 just ran thegenerate.sh
script 🤷 . I could remove all the unrelated changes but given I'm just running our dogfood image I don't think it's a big deal to go ahead and update them now. Especially if it'll keep happening to others. No strong opinion here though.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
type DisplayApp string | ||
const ( | ||
DisplayAppVSCodeDesktop DisplayApp = "vscode" |
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.
QQ: do we need to take any action on the API level based these enum values? Maybecodersdk
/API can be just a "dumb proxy", I mean "any" app.
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.
No not really it's mainly for discoverability and it also helps with the generated typescript types but I also don't mind removing it, wdyt?
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.
My idea is to reduce the number of places to update when you add another application, so if we don't intend to use let's just drop it. Unless we will use it in TypeScript/site, then we can leave it 👍
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.
Implementation LGTM 👍 but please take a look at e2e tests as it is failing for webTerminal? maybe it is just flake
Uh oh!
There was an error while loading.Please reload this page.
This PR implements the control plane portion of the
display_apps
field.false
to all fields.true
.This PR implements both the backend and frontend portions of the feature. Notably on the frontend the dropdown for
VSCode Desktop
ceases to be a dropdown if only one ofVSCode Desktop
orVSCode Insiders
is enabled.Some screenshots:
fixes#8033