tasks: fix typos in API description

Signed-off-by: Oguz Bektas <o.bektas@proxmox.com>
This commit is contained in:
Oguz Bektas 2021-05-20 15:03:23 +02:00 committed by Thomas Lamprecht
parent e379b4a31c
commit 338c545f85

View File

@ -256,7 +256,7 @@ fn extract_upid(param: &Value) -> Result<UPID, Error> {
}, },
}, },
access: { access: {
description: "Users can access there own tasks, or need Sys.Audit on /system/tasks.", description: "Users can access their own tasks, or need Sys.Audit on /system/tasks.",
permission: &Permission::Anybody, permission: &Permission::Anybody,
}, },
)] )]
@ -326,7 +326,7 @@ async fn read_task_log(
}, },
}, },
access: { access: {
description: "Users can stop there own tasks, or need Sys.Modify on /system/tasks.", description: "Users can stop their own tasks, or need Sys.Modify on /system/tasks.",
permission: &Permission::Anybody, permission: &Permission::Anybody,
}, },
)] )]
@ -420,7 +420,7 @@ fn stop_task(
items: { type: TaskListItem }, items: { type: TaskListItem },
}, },
access: { access: {
description: "Users can only see there own tasks, unless the have Sys.Audit on /system/tasks.", description: "Users can only see their own tasks, unless they have Sys.Audit on /system/tasks.",
permission: &Permission::Anybody, permission: &Permission::Anybody,
}, },
)] )]