orgObjectives function
Implementation
@riverpod
Future<List<LearningObjective>> orgObjectives(Ref ref, String orgId) async {
final ds = ref.watch(orgDatasourceProvider);
final models = await ds.getObjectives(orgId);
return models.map((m) => m.toEntity()).toList();
}