fix: resolved project list issue and app connection github not listed

This commit is contained in:
=
2025-01-06 19:48:50 +05:30
parent 30d66cef89
commit 240b86c1d5
3 changed files with 10 additions and 7 deletions

View File

@@ -151,7 +151,7 @@ export const useGetUserWorkspaces = ({
type?: ProjectType | "all";
} = {}) =>
useQuery({
queryKey: workspaceKeys.getAllUserWorkspace(),
queryKey: workspaceKeys.getAllUserWorkspace(type),
queryFn: () => fetchUserWorkspaces(includeRoles, type)
});

View File

@@ -1,18 +1,21 @@
import { createFileRoute } from "@tanstack/react-router";
import { createFileRoute, stripSearchParams } from "@tanstack/react-router";
import { zodValidator } from "@tanstack/zod-adapter";
import { z } from "zod";
import { GitHubOAuthCallbackPage } from "./GithubOauthCallbackPage";
const GitHubOAuthCallbackPageQueryParamsSchema = z.object({
code: z.string(),
state: z.string(),
installation_id: z.string()
code: z.string().catch(""),
state: z.string().catch(""),
installation_id: z.string().catch("")
});
export const Route = createFileRoute(
"/_authenticate/_inject-org-details/organization/_layout/app-connections/github/oauth/callback"
)({
component: GitHubOAuthCallbackPage,
validateSearch: zodValidator(GitHubOAuthCallbackPageQueryParamsSchema)
validateSearch: zodValidator(GitHubOAuthCallbackPageQueryParamsSchema),
search: {
middlewares: [stripSearchParams({ state: "", installation_id: "" })]
}
});

View File

@@ -74,7 +74,7 @@ export const GitHubConnectionForm = ({ appConnection }: Props) => {
break;
case GitHubConnectionMethod.OAuth:
window.location.assign(
`https://github.com/login/oauth/authorize?client_id=${oauthClientId}&response_type=code&scope=repo,admin:org&redirect_uri=${window.location.origin}/app-connections/github/oauth/callback&state=${state}`
`https://github.com/login/oauth/authorize?client_id=${oauthClientId}&response_type=code&scope=repo,admin:org&redirect_uri=${window.location.origin}/organization/app-connections/github/oauth/callback&state=${state}`
);
break;
default: