fetchAllFeedbacks method

  1. @override
Future<List<Feedback>> fetchAllFeedbacks()
override

Returns a list of ALL feedbacks submitted.

Note: This is only available to UserCapability.moderator and UserCapability.dev users.

Implementation

@override
Future<List<Feedback>> fetchAllFeedbacks() async {
  final response = await apiService.callFunction(
    function: "local_lbplanner_feedback_get_all_feedbacks",
    token: token.lbPlannerApiToken,
    body: {},
  );

  // TODO: replace with `response.failed` once #52 is merged
  if (response.isNotOk) {
    throw Exception("Failed to fetch all feedbacks: ${response.body}");
  }

  return response
      .expectMultiple()
      .map((e) => Feedback.fromJson(e))
      .toList(growable: false);
}