{ 'name': "attachment_size", 'summary': "Short (1 phrase/line) summary of the module's purpose", 'description': """ Long description of module's purpose """, 'author': "Copy by Chay Kroem", 'website': "https://www.yourcompany.com", # Categories can be used to filter modules in modules listing # Check https://github.com/odoo/odoo/blob/15.0/odoo/addons/base/data/ir_module_category_data.xml # for the full list 'category': 'tools', 'version': '0.1', # any module necessary for this one to work correctly 'depends': ['base','web','base_setup'], # always loaded 'data': [ # 'security/ir.model.access.csv', # 'views/views.xml', # 'views/templates.xml', 'views/res_config_settings_view.xml', 'views/res_users_view.xml', ], # only loaded in demonstration mode 'demo': [ 'demo/demo.xml', ], 'assets': { 'web.assets_backend': [ 'attachment_size/static/src/js/file_uploader.js', ], }, }