MCPcopy Create free account

hub / github.com/d4vidsha/scheduler / functions

Functions428 in github.com/d4vidsha/scheduler

MethodreadItem
* Read Item * Get item by ID. * @returns ItemPublic Successful Response * @throws ApiError
frontend/src/client/services.ts:477
MethodreadTask
* Read Task * Get task by ID. * @returns TaskPublic Successful Response * @throws ApiError
frontend/src/client/services.ts:614
MethodreadUserById
* Read User By Id * Get a specific user by id. * @returns UserPublic Successful Response * @throws ApiError
frontend/src/client/services.ts:308
Functionread_item
Get item by ID.
backend/app/api/routes/items.py:45
Functionread_items
Retrieve items.
backend/app/api/routes/items.py:14
Functionread_task
Get task by ID.
backend/app/api/routes/tasks.py:46
Functionread_tasks
Retrieve tasks.
backend/app/api/routes/tasks.py:15
Functionread_user_by_id
Get a specific user by id.
backend/app/api/routes/users.py:161
Functionread_user_me
Get current user.
backend/app/api/routes/users.py:121
Functionread_users
Retrieve users.
backend/app/api/routes/users.py:37
FunctionrecoverPassword
(data: FormData)
frontend/src/routes/recover-password.tsx:43
MethodrecoverPasswordHtmlContent
* Recover Password Html Content * HTML Content for Password Recovery * @returns string Successful Response * @throws ApiError
frontend/src/client/services.ts:124
Functionrecover_password
Password Recovery
backend/app/api/routes/login.py:55
Functionrecover_password_html_content
HTML Content for Password Recovery
backend/app/api/routes/login.py:106
Functionregister_user
Create new user without the need to be logged in.
backend/app/api/routes/users.py:145
Functionreorder_tasks
Reorder tasks based on the provided list of task IDs.
backend/app/api/routes/tasks.py:272
Functionrequest
( config: OpenAPIConfig, options: ApiRequestOptions, axiosClient: AxiosInstance = axios, )
frontend/src/client/core/request.ts:326
FunctionresetPassword
(data: NewPassword)
frontend/src/routes/reset-password.tsx:52
Functionreset_password
Reset password
backend/app/api/routes/login.py:79
Functionschedule_tasks
Auto-schedule incomplete tasks with a due date into working-hour slots.
backend/app/api/routes/tasks.py:129
FunctionsendRequest
( config: OpenAPIConfig, options: ApiRequestOptions, url: string, body: unknown, formData: FormData
frontend/src/client/core/request.ts:188
FunctionsetPage
(page: number)
frontend/src/routes/_layout/admin.tsx:51
FunctionsetPage
(page: number)
frontend/src/routes/_layout/items.tsx:47
FunctionsignUpNewUser
( page: Page, name: string, email: string, password: string, )
frontend/tests/utils/user.ts:3
Functionslugify
(text: string)
frontend/tests/utils/random.ts:14
Functionsuperuser_token_headers
(client: TestClient)
backend/app/tests/conftest.py:34
FunctiontagData
(query: string)
frontend/src/components/tasks/NaturalLanguageInput.tsx:47
FunctiontaskToEvent
(task: TaskPublic)
frontend/src/components/calendar/FullCalendarView.tsx:36
MethodtestEmail
* Test Email * Test emails. * @returns Message Successful Response * @throws ApiError
frontend/src/client/services.ts:380
MethodtestToken
* Test Token * Test access token * @returns UserPublic Successful Response * @throws ApiError
frontend/src/client/services.ts:68
Functiontest_authenticate_user
(db: Session)
backend/app/tests/crud/test_user.py:19
Functiontest_check_if_user_is_active
(db: Session)
backend/app/tests/crud/test_user.py:36
Functiontest_check_if_user_is_active_inactive
(db: Session)
backend/app/tests/crud/test_user.py:44
Functiontest_check_if_user_is_superuser
(db: Session)
backend/app/tests/crud/test_user.py:52
Functiontest_check_if_user_is_superuser_normal_user
(db: Session)
backend/app/tests/crud/test_user.py:60
Functiontest_clear_task_scheduled_start
( client: TestClient, superuser_token_headers: dict[str, str] )
backend/app/tests/api/test_tasks.py:275
Functiontest_create_item
( client: TestClient, superuser_token_headers: dict[str, str] )
backend/app/tests/api/routes/test_items.py:10
Functiontest_create_task
( client: TestClient, superuser_token_headers: dict[str, str] )
backend/app/tests/api/test_tasks.py:45
Functiontest_create_task_with_due_date
( client: TestClient, superuser_token_headers: dict[str, str] )
backend/app/tests/api/test_tasks.py:195
Functiontest_create_task_with_owner
( client: TestClient, superuser_token_headers: dict[str, str], db: Session )
backend/app/tests/api/test_tasks.py:62
Functiontest_create_task_with_priority
( client: TestClient, superuser_token_headers: dict[str, str], db: Session )
backend/app/tests/api/test_tasks.py:180
Functiontest_create_task_with_scheduled_start
( client: TestClient, superuser_token_headers: dict[str, str] )
backend/app/tests/api/test_tasks.py:210
Functiontest_create_task_with_tags
( client: TestClient, superuser_token_headers: dict[str, str] )
backend/app/tests/api/test_tasks.py:166
Functiontest_create_task_without_scheduled_start
( client: TestClient, superuser_token_headers: dict[str, str] )
backend/app/tests/api/test_tasks.py:227
Functiontest_create_user
(db: Session)
backend/app/tests/crud/test_user.py:10
Functiontest_create_user_by_normal_user
( client: TestClient, normal_user_token_headers: dict[str, str] )
backend/app/tests/api/routes/test_users.py:135
Functiontest_create_user_existing_username
( client: TestClient, superuser_token_headers: dict[str, str], db: Session )
backend/app/tests/api/routes/test_users.py:116
Functiontest_create_user_new_email
( client: TestClient, superuser_token_headers: dict[str, str], db: Session )
backend/app/tests/api/routes/test_users.py:36
Functiontest_delete_item
( client: TestClient, superuser_token_headers: dict[str, str], db: Session )
backend/app/tests/api/routes/test_items.py:129
Functiontest_delete_item_not_enough_permissions
( client: TestClient, normal_user_token_headers: dict[str, str], db: Session )
backend/app/tests/api/routes/test_items.py:154
Functiontest_delete_item_not_found
( client: TestClient, superuser_token_headers: dict[str, str] )
backend/app/tests/api/routes/test_items.py:142
Functiontest_delete_task
( client: TestClient, superuser_token_headers: dict[str, str] )
backend/app/tests/api/test_tasks.py:139
Functiontest_delete_task_not_found
( client: TestClient, superuser_token_headers: dict[str, str] )
backend/app/tests/api/test_tasks.py:432
Functiontest_delete_user_current_super_user_error
( client: TestClient, superuser_token_headers: dict[str, str], db: Session )
backend/app/tests/api/routes/test_users.py:458
Functiontest_delete_user_me
(client: TestClient, db: Session)
backend/app/tests/api/routes/test_users.py:385
Functiontest_delete_user_me_as_superuser
( client: TestClient, superuser_token_headers: dict[str, str] )
backend/app/tests/api/routes/test_users.py:416
Functiontest_delete_user_not_found
( client: TestClient, superuser_token_headers: dict[str, str] )
backend/app/tests/api/routes/test_users.py:447
Functiontest_delete_user_super_user
( client: TestClient, superuser_token_headers: dict[str, str], db: Session )
backend/app/tests/api/routes/test_users.py:428
Functiontest_delete_user_without_privileges
( client: TestClient, normal_user_token_headers: dict[str, str], db: Session )
backend/app/tests/api/routes/test_users.py:473
Functiontest_email
Test emails.
backend/app/api/routes/utils.py:16
Functiontest_get_access_token
(client: TestClient)
backend/app/tests/api/routes/test_login.py:12
Functiontest_get_access_token_incorrect_password
(client: TestClient)
backend/app/tests/api/routes/test_login.py:24
Functiontest_get_existing_user
( client: TestClient, superuser_token_headers: dict[str, str], db: Session )
backend/app/tests/api/routes/test_users.py:59
Functiontest_get_existing_user_current_user
(client: TestClient, db: Session)
backend/app/tests/api/routes/test_users.py:78
Functiontest_get_existing_user_permissions_error
( client: TestClient, normal_user_token_headers: dict[str, str] )
backend/app/tests/api/routes/test_users.py:105
Functiontest_get_user
(db: Session)
backend/app/tests/crud/test_user.py:68
Functiontest_get_users_normal_user_me
( client: TestClient, normal_user_token_headers: dict[str, str] )
backend/app/tests/api/routes/test_users.py:25
Functiontest_get_users_superuser_me
( client: TestClient, superuser_token_headers: dict[str, str] )
backend/app/tests/api/routes/test_users.py:14
Functiontest_init_successful_connection
()
backend/app/tests/scripts/test_backend_pre_start.py:8
Functiontest_init_successful_connection
()
backend/app/tests/scripts/test_test_pre_start.py:8
Functiontest_normal_user_cannot_delete_other_users_task
( client: TestClient, db: Session )
backend/app/tests/api/test_tasks.py:455
Functiontest_normal_user_cannot_read_other_users_task
( client: TestClient, db: Session )
backend/app/tests/api/test_tasks.py:444
Functiontest_not_authenticate_user
(db: Session)
backend/app/tests/crud/test_user.py:29
Functiontest_read_item
( client: TestClient, superuser_token_headers: dict[str, str], db: Session )
backend/app/tests/api/routes/test_items.py:27
Functiontest_read_item_not_enough_permissions
( client: TestClient, normal_user_token_headers: dict[str, str], db: Session )
backend/app/tests/api/routes/test_items.py:55
Functiontest_read_item_not_found
( client: TestClient, superuser_token_headers: dict[str, str] )
backend/app/tests/api/routes/test_items.py:43
Functiontest_read_items
( client: TestClient, superuser_token_headers: dict[str, str], db: Session )
backend/app/tests/api/routes/test_items.py:68
Functiontest_read_task
(client: TestClient, superuser_token_headers: dict[str, str])
backend/app/tests/api/test_tasks.py:86
Functiontest_read_task_not_found
( client: TestClient, superuser_token_headers: dict[str, str] )
backend/app/tests/api/test_tasks.py:406
Functiontest_read_tasks
( client: TestClient, superuser_token_headers: dict[str, str] )
backend/app/tests/api/test_tasks.py:348
Functiontest_read_tasks_normal_user_sees_only_own
(client: TestClient, db: Session)
backend/app/tests/api/test_tasks.py:361
Functiontest_recovery_password
( client: TestClient, normal_user_token_headers: dict[str, str] )
backend/app/tests/api/routes/test_login.py:45
Functiontest_recovery_password_user_not_exits
( client: TestClient, normal_user_token_headers: dict[str, str] )
backend/app/tests/api/routes/test_login.py:61
Functiontest_register_user
(client: TestClient, db: Session)
backend/app/tests/api/routes/test_users.py:285
Functiontest_register_user_already_exists_error
(client: TestClient)
backend/app/tests/api/routes/test_users.py:307
Functiontest_reorder_tasks
(client: TestClient, db: Session)
backend/app/tests/api/test_tasks.py:381
Functiontest_reset_password
( client: TestClient, superuser_token_headers: dict[str, str], db: Session )
backend/app/tests/api/routes/test_login.py:72
Functiontest_reset_password_invalid_token
( client: TestClient, superuser_token_headers: dict[str, str] )
backend/app/tests/api/routes/test_login.py:91
Functiontest_retrieve_users
( client: TestClient, superuser_token_headers: dict[str, str], db: Session )
backend/app/tests/api/routes/test_users.py:149
Functiontest_schedule_assigns_scheduled_start
Two tasks with a due date should both get a scheduled_start after scheduling.
backend/app/tests/api/test_tasks.py:479
Functiontest_schedule_only_affects_own_tasks
Scheduling for user A must not modify user B's tasks.
backend/app/tests/api/test_tasks.py:628
Functiontest_schedule_reschedules_all_incomplete_tasks
Running schedule twice should reschedule all incomplete tasks (not just unscheduled ones).
backend/app/tests/api/test_tasks.py:646
Functiontest_schedule_respects_priority_order
A higher-priority (lower id) task should receive an earlier or equal slot.
backend/app/tests/api/test_tasks.py:515
Functiontest_schedule_respects_working_hours
All scheduled tasks must fall within default working hours (9-18).
backend/app/tests/api/test_tasks.py:572
Functiontest_schedule_skips_completed_tasks
A completed task must not receive a scheduled_start from the scheduler.
backend/app/tests/api/test_tasks.py:595
Functiontest_toggle_task_completed
( client: TestClient, superuser_token_headers: dict[str, str] )
backend/app/tests/api/test_tasks.py:309
Functiontest_token
Test access token
backend/app/api/routes/login.py:47
Functiontest_update_item
( client: TestClient, superuser_token_headers: dict[str, str], db: Session )
backend/app/tests/api/routes/test_items.py:82
Functiontest_update_item_not_enough_permissions
( client: TestClient, normal_user_token_headers: dict[str, str], db: Session )
backend/app/tests/api/routes/test_items.py:114
Functiontest_update_item_not_found
( client: TestClient, superuser_token_headers: dict[str, str] )
backend/app/tests/api/routes/test_items.py:100
← previousnext →301–400 of 428, ranked by callers