public async Task <IHttpActionResult> MoveContent(CopyMoveContentDto content)
        {
            await _spaceService.MoveContentAsync(content);

            return(Ok());
        }