* add i18n string * Update config.matcher in middleware * migrate auth/oauth2/authorize * migrate auth/platform/authorize * migrate auth/signin
17 lines
333 B
TypeScript
17 lines
333 B
TypeScript
import { _generateMetadata } from "app/_utils";
|
|
import { WithLayout } from "app/layoutHOC";
|
|
|
|
import Page from "~/auth/platform/authorize-view";
|
|
|
|
export const generateMetadata = async () => {
|
|
return await _generateMetadata(
|
|
(t) => t("authorize"),
|
|
() => ""
|
|
);
|
|
};
|
|
|
|
export default WithLayout({
|
|
getLayout: null,
|
|
Page,
|
|
});
|