mirror of
https://github.com/makeplane/plane.git
synced 2025-12-16 11:57:56 +01:00
* Feature/7137/gitea sso (#7940) * added gitea auth to admin panel with configs , added api calls * added gitea to oauth root (for signup and signin) * removed log * replace github oauth with gitea ouath error messages * added gitea to auth root * fix: update token expiration handling and remove unused variable in Gitea callback * fix: include Gitea in OAuth enabled checks * fix: improve error handling when fetching emails from Gitea * chore : remove logs and add semicolons * refactor: update Gitea authentication components and imports for consistency * fix: enhance Gitea authentication form to auto-populate host value and improve OAuth checks * refactor: enhance Gitea OAuth provider with improved error handling and URL validation * fix: update authentication success messages to check for string value "1" --------- Co-authored-by: Shivam Jain <shivam.clgstash@gmail.com> Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com>
11 lines
282 B
TypeScript
11 lines
282 B
TypeScript
import type { ReactNode } from "react";
|
|
import type { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Gitea Authentication - God Mode",
|
|
};
|
|
|
|
export default function GiteaAuthenticationLayout({ children }: { children: ReactNode }) {
|
|
return <>{children}</>;
|
|
}
|