本文整理汇总了Python中indico.modules.rb.controllers.RHRoomBookingBase类的典型用法代码示例。如果您正苦于以下问题:Python RHRoomBookingBase类的具体用法?Python RHRoomBookingBase怎么用?Python RHRoomBookingBase使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了RHRoomBookingBase类的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _checkParams
def _checkParams(self):
RHRoomBookingBase._checkParams(self, request.args)
self._room_id = request.args.get('roomID')
示例2: _checkProtection
def _checkProtection(self):
RHRoomBookingBase._checkProtection(self)
if not self._reservation.can_be_cancelled(session.user):
raise IndicoError("You are not authorized to perform this action")
示例3: __init__
def __init__(self, *args, **kwargs):
RHRoomBookingBase.__init__(self, *args, **kwargs)
self._cache = GenericCache('MapOfRooms')
示例4: _checkProtection
def _checkProtection(self):
RHConferenceModifBase._checkProtection(self)
RHRoomBookingBase._checkProtection(self)
示例5: _checkProtection
def _checkProtection(self):
RHRoomBookingBase._checkProtection(self)
if not self._block.can_be_deleted(session.user):
raise IndicoError("You are not authorized to delete this blocking.")
示例6: _check_access
def _check_access(self):
RHRoomBookingBase._check_access(self)
if not self.blocking.can_be_modified(session.user):
raise Forbidden
示例7: _check_access
def _check_access(self):
RHRoomBookingBase._check_access(self)
if not rb_is_admin(session.user):
raise Forbidden
示例8: _process_args
def _process_args(self):
RHRoomBookingBase._process_args(self)
self._room_id = request.args.get('roomID')
示例9: _check_access
def _check_access(self):
RHRoomBookingBase._check_access(self)
if not self._reservation.can_be_rejected(session.user):
raise Forbidden("You are not authorized to perform this action")
示例10: _check_access
def _check_access(self):
RHRoomBookingBase._check_access(self)
if (self.prebook and not self.room.can_prebook(session.user) or
(not self.prebook and not self.room.can_book(session.user))):
raise Forbidden('Not authorized to book this room')
示例11: _check_access
def _check_access(self):
RHManageEventBase._check_access(self)
RHRoomBookingBase._check_access(self)
示例12: _check_access
def _check_access(self):
RHRoomBookingBase._check_access(self)
if not self._block.can_be_deleted(session.user):
raise Forbidden('You are not authorized to delete this blocking.')