Skip to content

Commit

Permalink
fix: filter users by type
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Aug 30, 2024
1 parent 56c8fd9 commit ab5edb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/endpoints/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ export type ListUsersResult = ListResult<
>
export type ListUsersArg = ListArg<{
students_in_class: Class["id"]
only_teachers: boolean
_id: User["id"] | User["id"][]
name: string
type: "teacher" | "student" | "independent" | "indy"
}>

export default function getReadUserEndpoints(
Expand Down

0 comments on commit ab5edb5

Please sign in to comment.