mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
5 lines
No EOL
151 B
JavaScript
5 lines
No EOL
151 B
JavaScript
export default async function ({ redirect, $auth }) {
|
|
if (!$auth?.user?.is_editor && !$auth?.user?.is_admin) {
|
|
return redirect('/')
|
|
}
|
|
} |