5509-entryDmsBack #2079
|
@ -2,6 +2,9 @@
|
||||||
"Entry": {
|
"Entry": {
|
||||||
"dataSource": "vn"
|
"dataSource": "vn"
|
||||||
},
|
},
|
||||||
|
"EntryDms": {
|
||||||
|
"dataSource": "vn"
|
||||||
|
},
|
||||||
"EntryContainer": {
|
"EntryContainer": {
|
||||||
"dataSource": "entryStorage"
|
"dataSource": "entryStorage"
|
||||||
},
|
},
|
||||||
|
|
|
@ -2,6 +2,8 @@ const UserError = require('vn-loopback/util/user-error');
|
||||||
|
|
||||||
module.exports = Self => {
|
module.exports = Self => {
|
||||||
require('../methods/entry-dms/removeFile')(Self);
|
require('../methods/entry-dms/removeFile')(Self);
|
||||||
|
require('../methods/entry-dms/downloadFile')(Self);
|
||||||
|
require('../methods/entry-dms/uploadFile')(Self);
|
||||||
|
|
||||||
Self.rewriteDbError(function(err) {
|
Self.rewriteDbError(function(err) {
|
||||||
if (err.code === 'ER_DUP_ENTRY')
|
if (err.code === 'ER_DUP_ENTRY')
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
{
|
{
|
||||||
"name": "EntryDms",
|
"name": "EntryDms",
|
||||||
"base": "Loggable",
|
"base": "VnModel",
|
||||||
|
"mixins": {
|
||||||
|
"Loggable": true
|
||||||
|
},
|
||||||
"options": {
|
"options": {
|
||||||
"mysql": {
|
"mysql": {
|
||||||
"table": "entryDms"
|
"table": "entryDms"
|
||||||
|
|
Loading…
Reference in New Issue