From 92ee4be87e02aff00c2aef834b9a8936d635108a Mon Sep 17 00:00:00 2001 From: LordJay23 Date: Sat, 30 Dec 2017 21:19:03 -0500 Subject: [PATCH] API - addStoryArc, getStoryArc API Reference Update OPDS minor fix for custom story arcs --- API_REFERENCE | 8 +++++++- mylar/api.py | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/API_REFERENCE b/API_REFERENCE index 98c8c231..25a8596c 100644 --- a/API_REFERENCE +++ b/API_REFERENCE @@ -62,5 +62,11 @@ shutdown (shut down mylar) restart (restart mylar) update (update mylar - you may want to check the install type in get version and not allow this if type==exe) -downloadIssue&id=$issueid (download that isse to your browser) +downloadIssue&id=$issueid (download that issue to your browser) findComic&name=$comicname (Find comics) + +getStoryArc (List all story arcs) +getStoryArc&customOnly=1 (List custom story arcs) +getStoryArc&id=$arcid (Show story arc issues) + +addStoryArc diff --git a/mylar/api.py b/mylar/api.py index 5146d689..3d0d22ba 100644 --- a/mylar/api.py +++ b/mylar/api.py @@ -35,7 +35,7 @@ cmd_list = ['getIndex', 'getComic', 'getUpcoming', 'getWanted', 'getHistory', 'queueIssue', 'unqueueIssue', 'forceSearch', 'forceProcess', 'getVersion', 'checkGithub','shutdown', 'restart', 'update', 'getComicInfo', 'getIssueInfo', 'getArt', 'downloadIssue', - 'downloadNZB', 'getReadList'] + 'downloadNZB', 'getReadList', 'getStoryArc', 'addStoryArc'] class Api(object):