mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-25 22:36:38 +00:00
shorten share links and add migration
This commit is contained in:
13
src/app/s/[accessToken]/page.tsx
Normal file
13
src/app/s/[accessToken]/page.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import AccessToken from "@app/app/auth/resource/[resourceId]/AccessToken";
|
||||
|
||||
export default async function ResourceAuthPage(props: {
|
||||
params: Promise<{ accessToken: string }>;
|
||||
}) {
|
||||
const params = await props.params;
|
||||
|
||||
return (
|
||||
<div className="w-full max-w-md mx-auto p-3 md:mt-32">
|
||||
<AccessToken token={params.accessToken} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user