summaryrefslogtreecommitdiffstats
path: root/feed.bl.php
diff options
context:
space:
mode:
authorAlessandro Cosentino <cosenal@gmail.com>2013-03-08 14:50:10 +0100
committerAlessandro Cosentino <cosenal@gmail.com>2013-03-08 14:50:10 +0100
commitf652daa3d92d0a5401b45e8b77cc2cfbb42023bd (patch)
tree4eb216c91e2828de9c3e2e9a19c5ed8a91e0cdc6 /feed.bl.php
parent25a766a00933ccbe5c24dc4c91bc93587e033abc (diff)
fix merge conflict
Diffstat (limited to 'feed.bl.php')
-rw-r--r--feed.bl.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/feed.bl.php b/feed.bl.php
index 0ddd8ac80..43e0faf6f 100644
--- a/feed.bl.php
+++ b/feed.bl.php
@@ -16,6 +16,10 @@ class FeedBl {
return $this->feedMapper->findById($feedid);
}
+ public function delete($feedid) {
+ return $this->feedMapper->deleteById($feedid);
+ }
+
public function create($url, $folderid) {
$feed = new Feed($url);
$this->feedMapper->save($feed, $folderid);