1
0
mirror of https://github.com/krawieck/lemmur/ synced 2024-12-16 18:39:21 +01:00
lemmur-app-android/lib/client/v1/main.dart

61 lines
1.1 KiB
Dart
Raw Normal View History

import 'package:flutter/foundation.dart';
export 'comment_endpoint.dart';
export 'post_endpoint.dart';
export 'user_endpoint.dart';
class V1 {
String instanceUrl;
V1(this.instanceUrl);
/// GET /categories
/// https://dev.lemmy.ml/docs/contributing_websocket_http_api.html#list-categories
String listCategories() {
throw UnimplementedError();
}
/// POST /search
/// https://dev.lemmy.ml/docs/contributing_websocket_http_api.html#search
String search({
@required String q,
@required String type,
String communityId,
@required String sort,
int page,
int limit,
String auth,
}) {
throw UnimplementedError();
}
}
2020-08-08 23:24:34 +02:00
enum Vote {
up,
none,
down,
}
extension VoteValue on Vote {
int get value {
switch (this) {
case Vote.up:
return 1;
case Vote.none:
return 0;
case Vote.down:
return -1;
}
2020-08-09 23:20:21 +02:00
throw Exception("unreachable");
2020-08-08 23:24:34 +02:00
}
}
2020-08-09 23:24:06 +02:00
class Captcha {
final String png;
/// can be null
final String wav;
final String uuid;
Captcha({this.png, this.wav, this.uuid});
}