コード例 #1
0
    def put(self):
        session_id = get_session_id(session, request)
        dao = GoalAssociationDAO(session_id)
        assoc = dao.from_json(request)
        dao.update_goal_association(assoc)
        dao.close()

        resp_dict = {'message': 'Goal Association successfully updated'}
        resp = make_response(json_serialize(resp_dict), OK)
        resp.contenttype = 'application/json'
        return resp
コード例 #2
0
  def put(self):
    session_id = get_session_id(session, request)
    dao = GoalAssociationDAO(session_id)
    assoc = dao.from_json(request)
    dao.update_goal_association(assoc)
    dao.close()

    resp_dict = {'message': 'Goal Association successfully updated'}
    resp = make_response(json_serialize(resp_dict), httplib.OK)
    resp.contenttype = 'application/json'
    return resp
コード例 #3
0
ファイル: GoalController.py プロジェクト: failys/cairis
  def put(self,environment_name,goal_name,subgoal_name):
    session_id = get_session_id(session, request)
    dao = GoalAssociationDAO(session_id)
    assoc = dao.from_json(request)
    dao.update_goal_association(assoc,unquote(environment_name),unquote(goal_name),unquote(subgoal_name))
    dao.close()

    resp_dict = {'message': 'Goal Association successfully updated'}
    resp = make_response(json_serialize(resp_dict), OK)
    resp.contenttype = 'application/json'
    return resp