from onegov.org import OrgApp
from onegov.core.redirect import Redirect
@OrgApp.path(path='/benutzerverwaltung')
[docs]
class BenutzerverwaltungRedirect(Redirect):
@OrgApp.path(path='/themen', absorb=True)
[docs]
class ThemenRedirect(Redirect):
@OrgApp.path(path='/aktuelles', absorb=True)
[docs]
class AktuellesRedirect(Redirect):
@OrgApp.path(path='/dateien')
[docs]
class DateienRedirect(Redirect):
@OrgApp.path(path='/bilder')
[docs]
class BilderRedirect(Redirect):
@OrgApp.path(path='/exporte')
[docs]
class ExporteRedirect(Redirect):
@OrgApp.path(path='/formulare')
@OrgApp.path(path='/formular', absorb=True)
@OrgApp.path(path='/formular-eingabe', absorb=True)
@OrgApp.path(path='/formular-eingang', absorb=True)
@OrgApp.path(path='/personen')
[docs]
class PersonenRedirect(Redirect):
@OrgApp.path(path='/ressourcen')
[docs]
class RessourcenRedirect(Redirect):
@OrgApp.path(path='/ressource', absorb=True)
[docs]
class RessourceRedirect(Redirect):
@OrgApp.path(path='/einteilung', absorb=True)
[docs]
class EinteilungRedirect(Redirect):
@OrgApp.path(path='/veranstaltungen')
[docs]
class VeranstaltungenRedirect(Redirect):
@OrgApp.path(path='/veranstaltung', absorb=True)
[docs]
class VeranstaltungRedirect(Redirect):
@OrgApp.path(path='/suche')
[docs]
class SucheRedirect(Redirect):
@OrgApp.path(path='/abonnenten')
[docs]
class AbonnentenRedirect(Redirect):
@OrgApp.path(path='/datei', absorb=True)
[docs]
class DateiRedirect(Redirect):
@OrgApp.path(path='/bild', absorb=True)
[docs]
class BildRedirect(Redirect):
@OrgApp.path(path='/fotoalben')
[docs]
class FotoalbenRedirect(Redirect):
@OrgApp.path(path='/fotoalbum', absorb=True)
[docs]
class FotoalbumRedirect(Redirect):
@OrgApp.path(path='/ressourcen-empfang')
[docs]
class RessourcenEmpfangRedirect(Redirect):
[docs]
to = '/resource-recipients'
@OrgApp.path(path='/ressourcen-empfaenger', absorb=True)
[docs]
class RessourcenEmpfaengerRedirect(Redirect):
[docs]
to = '/resource-recipient'
@OrgApp.path(path='/zahlungsanbieter')
[docs]
class ZahlungsanbieterRedirect(Redirect):
[docs]
to = '/payment-provider'
@OrgApp.path(path='/zahlungsanbieter-eintrag', absorb=True)
[docs]
class ZahlungsanbieterEintragRedirect(Redirect):
[docs]
to = '/payment-provider-entry'
@OrgApp.path(path='/zahlung', absorb=True)
[docs]
class ZahlungRedirect(Redirect):
@OrgApp.path(path='/zahlungen')
[docs]
class ZahlungenRedirect(Redirect):