Ejemplo n.º 1
0
 def delete(self, uid):
     try:
         update_status(u, uid, 2)
         set_user(get_all_data(u))
         return get_all_data(u), 200
     except Exception as e:
         return return400(e)
Ejemplo n.º 2
0
    def post(self):
        try:

            is_ok = create_data(u, is_check_name='user_name', name='user_name', password='******')

            if is_ok:
                set_user(get_all_data(u))
                return get_all_data(u), 201
            else:
                return [], 200
        except Exception as e:

            return return400(e)
Ejemplo n.º 3
0
 def get(self):
     try:
         return get_all_data(u)
     except Exception as e:
         return400(e)
Ejemplo n.º 4
0
 def put(self, uid):
     try:
         update_data(u, uid, name='user_name')
         return get_all_data(u), 200
     except Exception as e:
         return return400(e)
Ejemplo n.º 5
0
 def get(self, uid):
     try:
         # print(get_user_by_id(uid))
         return get_data_by_id(u, uid).one().toJson()
     except Exception as e:
         return return400(e)