Index: ChapterX.Application/Story/Commands/DeleteHandler.cs
===================================================================
--- ChapterX.Application/Story/Commands/DeleteHandler.cs	(revision b373fea3e2c9d404606002f8e7ba265a82d68187)
+++ ChapterX.Application/Story/Commands/DeleteHandler.cs	(revision a6e33d1f34c0dbbfff38bfb2c73eea32abfe7cff)
@@ -22,5 +22,5 @@
                 return new DeleteResponse(false);
 
-            if (story.UserId != request.CallerId)
+            if (!request.IsAdmin && story.UserId != request.CallerId)
                 throw new UnauthorizedAccessException("You do not own this story.");
 
