コード例 #1
0
 def _process_PATCH(self):
     RHSessionREST._process_PATCH(self)
     return jsonify_data(entries=[
         serialize_entry_update(block.timetable_entry)
         for block in self.session.blocks
     ],
                         flash=False)
コード例 #2
0
ファイル: legacy.py プロジェクト: wasm-network/indico
 def _process_PATCH(self):
     RHSessionREST._process_PATCH(self)
     entries = [
         serialize_entry_update(
             block.timetable_entry,
             session_=(self.session if self.is_session_timetable else None))
         for block in self.session.blocks
     ]
     return jsonify_data(entries=entries, flash=False)
コード例 #3
0
ファイル: legacy.py プロジェクト: wasm-network/indico
 def _process_args(self):
     RHSessionREST._process_args(self)
     self.is_session_timetable = request.args.get(
         'is_session_timetable') == '1'
コード例 #4
0
ファイル: legacy.py プロジェクト: belokop/indico_bare
 def _process_PATCH(self):
     RHSessionREST._process_PATCH(self)
     return jsonify_data(entries=[serialize_entry_update(block.timetable_entry) for block in self.session.blocks],
                         flash=False)
コード例 #5
0
ファイル: legacy.py プロジェクト: jas01/indico
 def _process_PATCH(self):
     RHSessionREST._process_PATCH(self)
     entries = [serialize_entry_update(block.timetable_entry,
                                       session_=(self.session if self.is_session_timetable else None))
                for block in self.session.blocks]
     return jsonify_data(entries=entries, flash=False)
コード例 #6
0
ファイル: legacy.py プロジェクト: jas01/indico
 def _process_args(self):
     RHSessionREST._process_args(self)
     self.is_session_timetable = request.args.get('is_session_timetable') == '1'