File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed
Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -2594,6 +2594,25 @@ pub static VERIFY_ENDPOINTS: LazyLock<Vec<VerifyEndpoint>> =
25942594 AllowedMethod :: Delete ,
25952595 ] ,
25962596 } ,
2597+ /* Tokens */
2598+ VerifyEndpoint {
2599+ url: "/v1/me/tokens" ,
2600+ visibility: Visibility :: Public ,
2601+ unprivileged_access: UnprivilegedAccess :: ReadOnly ,
2602+ allowed_methods: vec![ AllowedMethod :: Get ] ,
2603+ } ,
2604+ // Creating the resource here with SetupReqs is more complicated
2605+ // than with other resources because it's a multi-step process where
2606+ // later steps depend on earlier ones, so for now we will be lazy
2607+ // and opt out.
2608+
2609+ // VerifyEndpoint {
2610+ // url: "/v1/me/tokens/token-id",
2611+ // visibility: Visibility::Public,
2612+ // unprivileged_access: UnprivilegedAccess::None,
2613+ // allowed_methods: vec![AllowedMethod::Delete],
2614+ // },
2615+
25972616 /* Certificates */
25982617 VerifyEndpoint {
25992618 url: & DEMO_CERTIFICATES_URL ,
Original file line number Diff line number Diff line change 11API endpoints with no coverage in authz tests:
22probe_delete (delete "/experimental/v1/probes/{probe}")
3+ current_user_token_delete (delete "/v1/me/tokens/{token_id}")
34probe_list (get "/experimental/v1/probes")
45probe_view (get "/experimental/v1/probes/{probe}")
56support_bundle_download (get "/experimental/v1/system/support-bundles/{bundle_id}/download")
You can’t perform that action at this time.
0 commit comments