Merge pull request #3266 from egilli/export-domain-as-author

Use the article publisher as author for exported files
This commit is contained in:
Jérémy Benoist
2017-07-11 09:21:49 +02:00
committed by GitHub
4 changed files with 35 additions and 6 deletions

View File

@ -180,6 +180,7 @@ class EntryRestController extends WallabagRestController
return $this->get('wallabag_core.helper.entries_export')
->setEntries($entry)
->updateTitle('entry')
->updateAuthor('entry')
->exportAs($request->attributes->get('_format'));
}