You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
769 B
30 lines
769 B
// ignore_for_file: public_member_api_docs |
|
|
|
import 'package:nextcloud/src/api/news.openapi.dart'; |
|
|
|
/// API version of the news app supported |
|
const newsSupportedVersion = 'v1-3'; |
|
|
|
extension NewsVersionSupported on NewsClient { |
|
/// Check if the news app version is supported by this client |
|
/// |
|
/// Also returns the supported API version number |
|
Future<(bool, String)> isSupported() async { |
|
final response = await getSupportedApiVersions(); |
|
return ( |
|
response.body.apiLevels!.contains(newsSupportedVersion), |
|
newsSupportedVersion, |
|
); |
|
} |
|
} |
|
|
|
/// See https://github.com/nextcloud/news/blob/4a107b3d53c4fe651ac704251b99e04a53cd587f/lib/Db/ListType.php |
|
enum NewsListType { |
|
feed, |
|
folder, |
|
starred, |
|
allItems, |
|
shared, |
|
explore, |
|
unread, |
|
}
|
|
|