콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
16479 화면


아바타
취소
베스트 답변

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!