Esempio n. 1
0
def addCaption(http_request, captionDTO):
    captionService = CaptionService()
    return captionService.addCaption(http_request, captionDTO)
Esempio n. 2
0
def getCaptionByLink(http_request, caption_link):
    captionService = CaptionService()
    return captionService.getCaptionByLink(caption_link)
Esempio n. 3
0
def getCaptions(request):
    captionService = CaptionService()
    return captionService.getLatestCaptions()