Skip to content

Commit 8c51538

Browse files
committed
WIP
1 parent d656bc6 commit 8c51538

File tree

16 files changed

+1484
-36
lines changed

16 files changed

+1484
-36
lines changed

components/dashboard/src/app/AppBlockingFlows.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export const AppBlockingFlows: FC = ({ children }) => {
2323
const org = useCurrentOrg();
2424
const showDedicatedSetup = useShowDedicatedSetup();
2525
const showUserOnboarding = useShowUserOnboarding();
26+
console.info("user", user);
2627

2728
// This shouldn't happen, but if it does don't render anything yet
2829
if (!user) {

components/dashboard/src/components/error-boundaries/QueryErrorBoundary.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ const ExpectedQueryErrorsFallback: FC<FallbackProps> = ({ error, resetErrorBound
5454
search: `returnTo=${encodeURIComponent(loginUrl)}`,
5555
})
5656
.toString();
57+
console.log("redirecting to logout url", logoutUrl);
5758
window.location.href = logoutUrl;
5859
return <div></div>;
5960
}

components/dashboard/src/dedicated-setup/use-show-dedicated-setup.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ export const useShowDedicatedSetup = () => {
4040
if (enableDedicatedOnboardingFlow && showSetup && !inProgress) {
4141
setInProgress(true);
4242
}
43+
console.info("showSetup", showSetup, "inProgress", inProgress, "forceSetup", forceSetup);
4344

4445
return {
4546
showSetup: inProgress,

components/public-api/gitpod/v1/error.proto

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,14 @@ message ImageBuildLogsNotYetAvailableError {}
6767

6868
message CellDisabledError {}
6969

70+
message UnauthenticatedDetails {
71+
oneof reason {
72+
UserDeletedError user_deleted = 1;
73+
}
74+
}
75+
76+
message UserDeletedError {}
77+
7078
/*
7179
// details for INVALID_ARGUMENT status code
7280
// TODO: this is not yet implemented in the backend

components/public-api/go/v1/error.pb.go

Lines changed: 156 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)