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 @@