mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 02:33:02 +01:00
Update Toaster to support Django 4.2, to match current hosts and to address CVEs. [YOCTO #15152] (Bitbake rev: 4f5b1f5bede402295bf4dfc8845fe2f38973e157) Signed-off-by: Kieran McNulty <Kieran.McNulty@windriver.com> Signed-off-by: David Reyna <David.Reyna@windriver.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
17 lines
379 B
Python
17 lines
379 B
Python
#
|
|
# BitBake Toaster Implementation
|
|
#
|
|
# Copyright (C) 2014-2017 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
|
|
from django.urls import re_path as url
|
|
|
|
import bldcollector.views
|
|
|
|
urlpatterns = [
|
|
# landing point for pushing a bitbake_eventlog.json file to this toaster instace
|
|
url(r'^eventfile$', bldcollector.views.eventfile, name='eventfile'),
|
|
]
|