mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-04 08:53:42 +00:00
Tests performed: - Visit infinoted app view. - Enable/disable infinoted. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Veiko Aasa <veiko17@disroot.org>
13 lines
309 B
Python
13 lines
309 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
Views for the infinoted app.
|
|
"""
|
|
from plinth.modules import infinoted
|
|
from plinth.views import AppView
|
|
|
|
|
|
class InfinotedAppView(AppView):
|
|
"""Main app view for Infinoted."""
|
|
app_id = 'infinoted'
|
|
port_forwarding_info = infinoted.port_forwarding_info
|