+
+
+
+ {intl("placeholders.from")}
+
+
+
+
+ {intl("placeholders.to")}
+
+
+
+
+ {findStudents.query.data?.list.map((student) =>
+ student.phone ? (
+
+ {student.id} - {student.name}
+
+ ) : null
+ )}
+
+
+
+
+
+
+ );
+};
+
+export default AdMessage;
diff --git a/packages/atlas/src/api/student.ts b/packages/atlas/src/api/student.ts
index 1204ba1ac..19349300d 100644
--- a/packages/atlas/src/api/student.ts
+++ b/packages/atlas/src/api/student.ts
@@ -19,4 +19,10 @@ export class Student extends Base {
): Promise