| 1 | exports.version = 1.0 |
| 2 | exports.description = "Show uploader info in list" |
| 3 | exports.apiRequired = 8.3 // useBatch |
| 4 | exports.frontend_js = "main.js" |
| 5 | |
| 6 | exports.configDialog = { |
| 7 | sx: { maxWidth: '20em' }, |
| 8 | } |
| 9 | |
| 10 | exports.config = { |
| 11 | display: { |
| 12 | type: 'select', |
| 13 | options: { |
| 14 | "IP only": 'ip', |
| 15 | "Username only": 'user', |
| 16 | "IP + username": 'ip+user', |
| 17 | "Icon + text on mouse over": 'tooltip', |
| 18 | }, |
| 19 | defaultValue: 'ip+user', |
| 20 | frontend: true, |
| 21 | } |
| 22 | } |