Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- 회계
- 재고 관리
- PoS
- Project
- MRP
신고된 질문입니다
Hi Samba,
This is the type of authentication (method) for that specific page / route. These are all the authentication types:
user: The user must be authenticated and the current request will perform using the rights that the user was given.
admin: The user may not be authenticated and the current request will perform using the admin user, see this as an admin-only part.
none: The method is always activ The requested code will not have any facilities to access the database nor have any configuration indicating the current database/current user.
public: public authentication, no login required, anybody can access.
In essence it means that anybody can access the page which you provide with auth='public'. Anything that is related to @http.route is provided thanks to the Odoo web controller.
Thank you Yenthe,
No problem samba, best of luck!