view libervia/pages/merge-requests/new/page_meta.py @ 1363:c3dac1e11341

server: options can now be specified with environment variables: environment variable are named `LIBERVIA_` + the option name in uppercase. For instance, `LIBERVIA_PASSPHRASE` can be used to set the passphrase of service profile. Variable are set in this order of priority (lowest to highest priority): - `sat.conf` settings - environment variables - arguments specified at command line
author Goffi <goffi@goffi.org>
date Sun, 15 Nov 2020 16:59:55 +0100
parents f511f8fbbf8a
children e3e303a30a74
line wrap: on
line source

#!/usr/bin/env python3


from libervia.server.constants import Const as C
from sat.core.log import getLogger

log = getLogger(__name__)
"""ticket handling pages"""

name = "merge-requests_new"
access = C.PAGES_ACCESS_PUBLIC
template = "merge-request/create.html"