1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-01 17:38:37 +00:00

Adds keyboard shortcut for refreshing all feeds

- Binds the 'R' key to trigger a refresh in the background for all
feeds.
- Updates the locale, using the same description as the link in the
feeds page.

Co-authored-by: Vitor Pellegrino <pellegrino@linux.com>
This commit is contained in:
Vitor Pellegrino 2020-05-27 06:35:44 +02:00 committed by GitHub
parent 7e5157f218
commit 7fb0bdc9a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 61 additions and 16 deletions

View file

@ -14,6 +14,11 @@ class RequestBuilder {
};
}
withHttpMethod(method) {
this.options.method = method;
return this;
}
withBody(body) {
this.options.body = JSON.stringify(body);
return this;