Exemple #1
0
def get_put_openinghourstemplates_byId(id_):
    return route_generic.genericGetPutDelById("/openinghourstemplates/<id_>",
                                              current_user.is_authenticated,
                                              id_)
Exemple #2
0
def get_unauthenticated_bookedslots_byId(id_):
    return route_generic.genericGetPutDelById("/bookedslots/<id_>",
                                              current_user.is_authenticated,
                                              id_)
Exemple #3
0
def del_authenticate_bookableslots_byId(id_):
    return route_generic.genericGetPutDelById("/bookableslots/<id_>",
                                              current_user.is_authenticated,
                                              id_)
Exemple #4
0
def get_put_distributionowners_byId(id_):
    return route_generic.genericGetPutDelById("/distributionowners/<id_>",
                                              current_user.is_authenticated,
                                              id_)
Exemple #5
0
def get_put_addresses_byId(id_):
    return route_generic.genericGetPutDelById("/addresses/<id_>",current_user.is_authenticated, id_)
Exemple #6
0
def get_put_recurringslotstemplates_byId(id_):
    return route_generic.genericGetPutDelById("/recurringslotstemplates/<id_>",current_user.is_authenticated, id_)