From 31f87a7eb890667038482391281cb189afbbe2cb Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Mon, 29 Jun 2020 19:26:50 +0000 Subject: [PATCH] --- ayanova/devdocs/todo.txt | 2 + ayanova/src/api/biz-role-rights.js | 1 + ayanova/src/views/adm-attachments.vue | 99 +++++++++++++++++++++++---- 3 files changed, 90 insertions(+), 12 deletions(-) diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 772157a1..611bfa04 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -75,6 +75,8 @@ todo: Administration - Attached files manager Need a TID ui data type change data-table ui column generator to support it look for email type 11 to find all the spots + way to implement is to include the two column names of the values to use as the tid column at server end + like the db table names but instead they are column names diff --git a/ayanova/src/api/biz-role-rights.js b/ayanova/src/api/biz-role-rights.js index 0a56a6f0..69dec579 100644 --- a/ayanova/src/api/biz-role-rights.js +++ b/ayanova/src/api/biz-role-rights.js @@ -62,6 +62,7 @@ export default { TrialSeeder: { Change: 16386, ReadFullRecord: 8193, Select: 0 }, LogFile: { Change: 0, ReadFullRecord: 24576, Select: 0 }, Backup: { Change: 16384, ReadFullRecord: 8195, Select: 0 }, + FileAttachment: { Change: 2, ReadFullRecord: 3, Select: 0 }, ServerJob: { Change: 16384, ReadFullRecord: 8195, Select: 0 }, ServerMetrics: { Change: 16384, ReadFullRecord: 24576, Select: 0 }, Translation: { Change: 16386, ReadFullRecord: 131071, Select: 0 }, diff --git a/ayanova/src/views/adm-attachments.vue b/ayanova/src/views/adm-attachments.vue index 229f6e24..790b5e65 100644 --- a/ayanova/src/views/adm-attachments.vue +++ b/ayanova/src/views/adm-attachments.vue @@ -1,21 +1,96 @@