-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.tsx
40 lines (29 loc) · 855 Bytes
/
page.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import { createClient } from '@/utils/supabase/server';
import checkAdmin from '@/utils/supabase/checkAdmin';
import { redirect } from 'next/navigation';
export default async function Index() {
const supabase = await createClient();
const checkUser = async () => {
const { data: userInformation } = await supabase.auth.getUser();
if (userInformation.user) {
const isAdmin = await checkAdmin();
if (isAdmin) {
return redirect('/learners');
} else {
return redirect('/quizzes');
}
}
};
const {
data: { user },
} = await supabase.auth.getUser();
if (!user) {
return redirect('/sign-in');
}
await checkUser();
return (
<>
<h2 className='font-medium text-xl mb-4'>Please sign in to use the FAC Quiz Site</h2>
</>
);
}