Finished coding the AssetTypes part of the Admin page. Tested adding assets. Did not implement removing them or updating them. Added the start for a page to manage assets.

This commit is contained in:
2022-06-29 00:31:47 -07:00
parent 3c58f3f8da
commit 94c7fb9f7b
5 changed files with 3734 additions and 75 deletions

20
imports/ui/Assets.svelte Normal file
View File

@@ -0,0 +1,20 @@
<script>
import {Meteor} from "meteor/meteor";
import {onMount} from "svelte";
import {writable} from "svelte/store";
import TextField from '@smui/textfield';
import HelperText from '@smui/textfield/helper-text';
import {AssetTypes} from "../api/asset-types";
import {Assets} from "../api/assets";
onMount(async () => {
Meteor.subscribe('assetTypes');
});
</script>
<div class="container">
</div>
<style>
</style>