mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
- This app is useful for people who can connect a monitor, a keyboard, and a mouse to their FreedomBox. - Later this app allow a headless FreedomBox to be used as a remote desktop server. Users will be able to connect and access desktop applications from LAN or WAN. - No functional tests as they will likely fail in CI and container setups. Tests: - In a VM, install the app. Installation succeeds. - Disabling the app makes systemd switch to multi-user.target shutting down any service that any mean for GUI such as gnome-remote-desktop.service. Graphical login is not shown on the VM's virtual monitor. - Enabling the app make systemd switch to graphical.target and all the services are started again. Graphical login is shown on the VM's virtual monitor. - Login to desktop using VM's graphical terminal works. Settings, apps, browser etc. work. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Veiko Aasa <veiko17@disroot.org>
11 lines
242 B
Python
11 lines
242 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""URLs for the GNOME module."""
|
|
|
|
from django.urls import re_path
|
|
|
|
from plinth.views import AppView
|
|
|
|
urlpatterns = [
|
|
re_path(r'^apps/gnome/$', AppView.as_view(app_id='gnome'), name='index'),
|
|
]
|