shorten share links and add migration

This commit is contained in:
miloschwartz
2025-04-04 22:58:01 -04:00
parent 302094771b
commit 74d6b3d902
12 changed files with 231 additions and 63 deletions

View 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>
);
}