isOrgAdmin function

  1. @riverpod
Future<bool> isOrgAdmin(
  1. Ref<Object?> ref
)

Whether the current user is an owner/admin of any organization.

Implementation

@riverpod
Future<bool> isOrgAdmin(Ref ref) async {
  final ds = ref.watch(orgDatasourceProvider);
  final orgs = await ds.getAdminOrgs();
  return orgs.isNotEmpty;
}