Beispiel #1
0
def tag_add(request, scanid, tagname):
    from frontend.scans.views.tags import AjaxTag

    tag = AjaxTag()
    rtn = tag.add(scanid, tagname)
    return HttpResponse(rtn)