diff --git a/skeema/gradido_community/insert/transaction_types.sql b/skeema/gradido_community/insert/transaction_types.sql new file mode 100644 index 000000000..9dbf5b93f --- /dev/null +++ b/skeema/gradido_community/insert/transaction_types.sql @@ -0,0 +1,5 @@ + +INSERT INTO `transaction_types` (`id`, `name`, `text`) VALUES +(1, 'creation', 'Aktives oder Bedingungsloses Grundeinkommen.'), +(2, 'transfer', 'Einfache Überweisung'); + diff --git a/src/protobuf b/src/protobuf index 9004e6978..72e8fe7b7 160000 --- a/src/protobuf +++ b/src/protobuf @@ -1 +1 @@ -Subproject commit 9004e6978ac3dafcc635b2ffcf8bc6a156451cca +Subproject commit 72e8fe7b73a1aaf2d057d2fef59ade9268830008 diff --git a/websrc/package.json b/websrc/package.json index 9570a5f0f..8d456e83b 100644 --- a/websrc/package.json +++ b/websrc/package.json @@ -6,6 +6,7 @@ "scripts": { "watch:js": "watchify ./src/js/app.js -t [ babelify --presets [ @babel/preset-env ] ] -o ../webroot/js/app.js -v", "watch:css": "gulp watchStyles", + "bundle:css": "gulp bundleStyles", "prebuild": "browserify ./src/js/app.js -t [ babelify --presets [ @babel/preset-env ] ] -o ./public/app.rl.js -v", "build": "gulp compressStyles && browserify ./public/app.rl.js -g uglifyify -p bundle-collapser/plugin | uglifyjs --compress --mangle toplevel,eval > ../webroot/js/app.min.js" },