feat(fastapi): add /pkgbase/{name}/merge (get)

Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
Kevin Morris 2021-10-11 23:17:54 -07:00
parent 990f4d182b
commit 2b9840149e
No known key found for this signature in database
GPG key ID: F7E46DED420788F3
4 changed files with 120 additions and 0 deletions

View file

@ -0,0 +1,6 @@
document.addEventListener('DOMContentLoaded', function() {
const input = document.getElementById('merge_into');
const form = document.getElementById('merge-form');
const type = "suggest-pkgbase";
typeahead.init(type, input, form, false);
});