diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-01-03 19:23:34 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-01-03 19:23:34 +0100 |
commit | 593455fc8beca8c722bddb19e38d4a98e5dbf787 (patch) | |
tree | 894e35653bfe0fffa340de485388daae2b3e689e | |
parent | fixed imports (diff) | |
download | pyload-593455fc8beca8c722bddb19e38d4a98e5dbf787.tar.xz |
closed #483
-rw-r--r-- | module/Api.py | 28 |
1 files changed, 4 insertions, 24 deletions
diff --git a/module/Api.py b/module/Api.py index e6bd10762..bafb69408 100644 --- a/module/Api.py +++ b/module/Api.py @@ -813,28 +813,8 @@ class Api(Iface): :param uuid: :return: list of `Events` """ - events = self.core.pullManager.getEvents(uuid) - newEvents = [] - - def convDest(d): - return Destination.Queue if d == "queue" else Destination.Collector - - for e in events: - event = EventInfo() - event.eventname = e[0] - if e[0] in ("update", "remove", "insert"): - event.id = e[3] - event.type = ElementType.Package if e[2] == "pack" else ElementType.File - event.destination = convDest(e[1]) - elif e[0] == "order": - if e[1]: - event.id = e[1] - event.type = ElementType.Package if e[2] == "pack" else ElementType.File - event.destination = convDest(e[3]) - elif e[0] == "reload": - event.destination = convDest(e[1]) - newEvents.append(event) - return newEvents + # TODO + pass @permission(PERMS.ACCOUNTS) def getAccounts(self, refresh): @@ -854,9 +834,9 @@ class Api(Iface): def getAccountTypes(self): """All available account types. - :return: list + :return: string list """ - return self.core.pluginManager.getPlugins("account").keys() + return self.core.pluginManager.getPlugins("accounts").keys() @permission(PERMS.ACCOUNTS) def updateAccount(self, plugin, account, password=None, options={}): |