isOrgAdmin function
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;
}