예제 #1
0
파일: views.py 프로젝트: cbtkc/exchange
def publish_service(request, pk):
    create_record.delay(pk)
    return redirect('services')
예제 #2
0
def publish_service(request, pk):
    """
    Publish the service records to the csw catalog
    """
    create_record.delay(pk)
    return redirect('services')
예제 #3
0
파일: views.py 프로젝트: jdgarrett/exchange
def publish_service(request, pk):
    """
    Publish the service records to the csw catalog
    """
    create_record.delay(pk)
    return redirect('services')