/
githubmirror
/
photoprism
Обзор
Документация
Войти
/
githubmirror
/
photoprism
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
frontend/src/page/admin.vue
20 строк
479 B
Michael Mayer
Frontend: Redirect CE admin/cluster/instances stubs to default route
09 июн 2026, 01:59
09 июн 2026, 01:59
927caa3
Код
Авторство
О чём код?
<template> <div class="p-page p-page-admin"></div> </template> <script> // PPageAdmin is a Community Edition stub: the admin area only exists as a // Plus/Pro/Portal overlay, so in CE it redirects to the user's default route. export default { name: "PPageAdmin", created() { this.$router.replace({ name: this.$session.getDefaultRoute() }); }, mounted() { this.$view.enter(this); }, unmounted() { this.$view.leave(this); }, methods: {}, }; </script>