blob: 8eb1e34a536a9f4d98c013943863e3b66b8bcfd4 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001#
2# BitBake Toaster Implementation
3#
Brad Bishopd7bf8c12018-02-25 22:55:05 -05004# Copyright (C) 2014-2017 Intel Corporation
Patrick Williamsc124f4f2015-09-15 14:41:29 -05005#
Brad Bishopc342db32019-05-15 21:57:59 -04006# SPDX-License-Identifier: GPL-2.0-only
Patrick Williamsc124f4f2015-09-15 14:41:29 -05007#
Patrick Williamsc124f4f2015-09-15 14:41:29 -05008
Brad Bishopd7bf8c12018-02-25 22:55:05 -05009from django.conf.urls import include, url
Patrick Williamsc124f4f2015-09-15 14:41:29 -050010
Brad Bishopd7bf8c12018-02-25 22:55:05 -050011import bldcollector.views
12
13urlpatterns = [
Patrick Williamsc124f4f2015-09-15 14:41:29 -050014 # landing point for pushing a bitbake_eventlog.json file to this toaster instace
Brad Bishopd7bf8c12018-02-25 22:55:05 -050015 url(r'^eventfile$', bldcollector.views.eventfile, name='eventfile'),
16]