diff --git a/README.md b/README.md index bbd6d24a..96aab333 100644 --- a/README.md +++ b/README.md @@ -452,28 +452,44 @@ fn main() -> Result<(), Box> { .build()?; router.insert(&route, 14)?; - insta::assert_snapshot!(router.path, @r" + insta::assert_snapshot!(router, @r" + === Path / - ├─ user [*] + ├─ user [9] │ ╰─ / - │ ├─ createWithList [*] + │ ├─ createWithList [10] │ ├─ log - │ │ ├─ out [*] - │ │ ╰─ in [*] - │ ╰─ {username} [*] - ├─ pet [*] + │ │ ├─ out [12] + │ │ ╰─ in [11] + │ ╰─ {username} [13] + ├─ pet [1] │ ╰─ / │ ├─ findBy - │ │ ├─ Status [*] - │ │ ╰─ Tags [*] - │ ╰─ {petId} [*] - │ ╰─ /uploadImage [*] + │ │ ├─ Status [2] + │ │ ╰─ Tags [3] + │ ╰─ {petId} [4] + │ ╰─ /uploadImage [5] ├─ store/ - │ ├─ inventory [*] - │ ╰─ order [*] + │ ├─ inventory [6] + │ ╰─ order [7] │ ╰─ / - │ ╰─ {orderId} [*] - ╰─ {*catch_all} [*] + │ ╰─ {orderId} [8] + ╰─ {*catch_all} [14] + === Chains + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + 14 "); Ok(()) @@ -508,7 +524,7 @@ In a router of 130 routes, benchmark matching 4 paths. | Library | Time | Alloc Count | Alloc Size | Dealloc Count | Dealloc Size | |:-----------------|----------:|------------:|-----------:|--------------:|-------------:| -| wayfind | 401.83 ns | 5 | 329 B | 5 | 329 B | +| wayfind | 422.40 ns | 5 | 329 B | 5 | 329 B | | matchit | 571.88 ns | 5 | 480 B | 5 | 512 B | | path-tree | 584.19 ns | 5 | 480 B | 5 | 512 B | | xitca-router | 652.85 ns | 8 | 864 B | 8 | 896 B | @@ -523,7 +539,7 @@ In a router of 320 routes, benchmark matching 80 paths. | Library | Time | Alloc Count | Alloc Size | Dealloc Count | Dealloc Size | |:-----------------|----------:|------------:|-----------:|--------------:|-------------:| -| wayfind | 5.8701 µs | 60 | 3.847 KB | 60 | 3.847 KB | +| wayfind | 5.7526 µs | 60 | 3.847 KB | 60 | 3.847 KB | | path-tree | 8.6580 µs | 60 | 8.727 KB | 60 | 8.75 KB | | matchit | 9.9301 µs | 141 | 19.09 KB | 141 | 19.11 KB | | xitca-router | 11.894 µs | 210 | 26.79 KB | 210 | 26.81 KB | diff --git a/benches/gitlab_criterion.rs b/benches/gitlab_criterion.rs index 1cc9771d..2d47355e 100644 --- a/benches/gitlab_criterion.rs +++ b/benches/gitlab_criterion.rs @@ -74,7 +74,7 @@ fn display_benchmark(criterion: &mut Criterion) { bencher.iter_batched( || router.clone(), - |router| router.path.to_string(), + |router| router.to_string(), BatchSize::SmallInput, ); }); diff --git a/benches/gitlab_divan.rs b/benches/gitlab_divan.rs index 23f68cb4..2ed2de8b 100644 --- a/benches/gitlab_divan.rs +++ b/benches/gitlab_divan.rs @@ -51,5 +51,5 @@ fn wayfind_display(bencher: divan::Bencher<'_, '_>) { bencher .with_inputs(|| router.clone()) - .bench_refs(|router| router.path.to_string()); + .bench_refs(|router| router.to_string()); } diff --git a/src/chain.rs b/src/chain.rs index ceac4105..8bacae1a 100644 --- a/src/chain.rs +++ b/src/chain.rs @@ -1,6 +1,13 @@ use crate::routers::path::id::PathId; +use std::fmt::Display; -#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)] +#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)] pub struct DataChain { pub path: PathId, } + +impl Display for DataChain { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(f, "{}", self.path) + } +} diff --git a/src/lib.rs b/src/lib.rs index 3e1653c7..85d03853 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,7 @@ #![doc = include_str!("../README.md")] pub(crate) mod chain; +pub use chain::DataChain; pub(crate) mod decode; diff --git a/src/routers.rs b/src/routers.rs index 19569805..d7ec5066 100644 --- a/src/routers.rs +++ b/src/routers.rs @@ -4,7 +4,7 @@ use crate::{ Request, Route, }; use path::{PathParameters, PathRouter}; -use std::collections::HashMap; +use std::collections::BTreeMap; pub mod path; @@ -24,7 +24,7 @@ pub struct PathMatch<'r, 'p> { #[derive(Clone)] pub struct Router<'r, T> { pub path: PathRouter<'r>, - data: HashMap, + data: BTreeMap, } impl<'r, T> Router<'r, T> { @@ -32,7 +32,7 @@ impl<'r, T> Router<'r, T> { pub fn new() -> Self { Self { path: PathRouter::new(), - data: HashMap::default(), + data: BTreeMap::default(), } } @@ -85,10 +85,21 @@ impl std::fmt::Display for Router<'_, T> { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { write!(f, "=== Path")?; let path = self.path.to_string(); - if !path.is_empty() { + if path.is_empty() { + write!(f, "\nEmpty")?; + } else { write!(f, "\n{path}")?; } + write!(f, "\n=== Chains")?; + if self.data.is_empty() { + write!(f, "\nEmpty")?; + } else { + for chain in self.data.keys() { + write!(f, "\n{chain}")?; + } + } + Ok(()) } } diff --git a/src/routers/path/display.rs b/src/routers/path/display.rs index ee87e729..755750ed 100644 --- a/src/routers/path/display.rs +++ b/src/routers/path/display.rs @@ -1,5 +1,4 @@ -use super::Node; -use crate::routers::path::state::State; +use crate::routers::path::{node::Node, state::State}; use std::fmt::{Display, Write}; impl Display for Node<'_, S> { @@ -14,15 +13,15 @@ impl Display for Node<'_, S> { let key = node.state.key(); if is_top { - if node.data.is_some() { - writeln!(output, "{key} [*]")?; + if let Some(data) = node.data.as_ref() { + writeln!(output, "{key} [{}]", data.id)?; } else { writeln!(output, "{key}")?; } } else { let branch = if is_last { "╰─" } else { "├─" }; - if node.data.is_some() { - writeln!(output, "{padding}{branch} {key} [*]")?; + if let Some(data) = node.data.as_ref() { + writeln!(output, "{padding}{branch} {key} [{}]", data.id)?; } else { writeln!(output, "{padding}{branch} {key}")?; } diff --git a/src/routers/path/id.rs b/src/routers/path/id.rs index 0d61a173..1c0015d4 100644 --- a/src/routers/path/id.rs +++ b/src/routers/path/id.rs @@ -1,3 +1,5 @@ +use std::fmt::Display; + #[derive(Clone, Default)] pub struct PathIdGenerator { id: usize, @@ -10,5 +12,11 @@ impl PathIdGenerator { } } -#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)] +#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)] pub struct PathId(pub usize); + +impl Display for PathId { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(f, "{}", self.0) + } +} diff --git a/tests/constraint.rs b/tests/constraint.rs index 23798e0e..da280ff2 100644 --- a/tests/constraint.rs +++ b/tests/constraint.rs @@ -25,7 +25,9 @@ fn test_constraint_dynamic() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path /users/ - ╰─ {id:name} [*] + ╰─ {id:name} [1] + === Chains + 1 "); let request = RequestBuilder::new().path("/users/john123").build()?; @@ -60,7 +62,9 @@ fn test_constraint_wildcard() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path /users/ - ╰─ {*path:name} [*] + ╰─ {*path:name} [1] + === Chains + 1 "); let request = RequestBuilder::new().path("/users/john/doe123").build()?; @@ -148,8 +152,11 @@ fn test_constraint_builtin() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path /users/ - ├─ {id:u32} [*] - ╰─ {id} [*] + ├─ {id:u32} [2] + ╰─ {id} [1] + === Chains + 1 + 2 "); let request = RequestBuilder::new().path("/users/abc").build()?; @@ -197,8 +204,11 @@ fn test_constraint_unreachable() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path /users/ - ├─ {id:name} [*] - ╰─ {id:u32} [*] + ├─ {id:name} [2] + ╰─ {id:u32} [1] + === Chains + 1 + 2 "); let request = RequestBuilder::new().path("/users/123").build()?; diff --git a/tests/delete.rs b/tests/delete.rs index f76ceacf..a2cc2123 100644 --- a/tests/delete.rs +++ b/tests/delete.rs @@ -13,7 +13,9 @@ fn test_delete() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path - /test [*] + /test [1] + === Chains + 1 "); let route = RouteBuilder::new().route("/tests").build()?; @@ -27,7 +29,9 @@ fn test_delete() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path - /test [*] + /test [1] + === Chains + 1 "); let route = RouteBuilder::new().route("(/test)").build()?; @@ -47,12 +51,19 @@ fn test_delete() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path - /test [*] + /test [1] + === Chains + 1 "); let route = RouteBuilder::new().route("/test").build()?; router.delete(&route)?; - insta::assert_snapshot!(router, @"=== Path"); + insta::assert_snapshot!(router, @r" + === Path + Empty + === Chains + Empty + "); Ok(()) } @@ -66,8 +77,10 @@ fn test_delete_mismatch() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path - / [*] - ╰─ test [*] + / [1] + ╰─ test [1] + === Chains + 1 "); let route = RouteBuilder::new().route("/test").build()?; @@ -82,8 +95,10 @@ fn test_delete_mismatch() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path - / [*] - ╰─ test [*] + / [1] + ╰─ test [1] + === Chains + 1 "); let route = RouteBuilder::new().route("/").build()?; @@ -98,13 +113,20 @@ fn test_delete_mismatch() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path - / [*] - ╰─ test [*] + / [1] + ╰─ test [1] + === Chains + 1 "); let route = RouteBuilder::new().route("(/test)").build()?; router.delete(&route)?; - insta::assert_snapshot!(router, @"=== Path"); + insta::assert_snapshot!(router, @r" + === Path + Empty + === Chains + Empty + "); Ok(()) } @@ -120,7 +142,9 @@ fn test_delete_empty() -> Result<(), Box> { === Path / ╰─ {id} - ╰─ data [*] + ╰─ data [1] + === Chains + 1 "); let route = RouteBuilder::new().route("/{id}").build()?; @@ -136,7 +160,9 @@ fn test_delete_empty() -> Result<(), Box> { === Path / ╰─ {id} - ╰─ data [*] + ╰─ data [1] + === Chains + 1 "); Ok(()) diff --git a/tests/display.rs b/tests/display.rs index 45d6d423..470348e1 100644 --- a/tests/display.rs +++ b/tests/display.rs @@ -32,27 +32,37 @@ fn test_display_router() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path - / [*] - ├─ api/v1 [*] - │ ╰─ / [*] - ├─ users [*] + / [1] + ├─ api/v1 [7] + │ ╰─ / [7] + ├─ users [2] │ ╰─ / - │ ╰─ {id} [*] - │ ╰─ /profile [*] + │ ╰─ {id} [3] + │ ╰─ /profile [4] ├─ images/ - │ ╰─ {name} [*] + │ ╰─ {name} [8] │ ╰─ . - │ ╰─ {extension} [*] + │ ╰─ {extension} [8] ├─ files/ │ ╰─ {*path} - │ ╰─ /download [*] + │ ╰─ /download [6] ├─ posts/ │ ╰─ {year} │ ╰─ - │ ╰─ {month} │ ╰─ - - │ ╰─ {day} [*] - ╰─ {*catch_all} [*] + │ ╰─ {day} [5] + ╰─ {*catch_all} [9] + === Chains + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 "); Ok(()) diff --git a/tests/dynamic.rs b/tests/dynamic.rs index e38a6b96..dd32adae 100644 --- a/tests/dynamic.rs +++ b/tests/dynamic.rs @@ -12,7 +12,9 @@ fn test_dynamic_simple() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path / - ╰─ {id} [*] + ╰─ {id} [1] + === Chains + 1 "); let request = RequestBuilder::new().path("/123").build()?; @@ -50,11 +52,15 @@ fn test_dynamic_multiple() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path / - ╰─ {year} [*] + ╰─ {year} [1] ╰─ / - ╰─ {month} [*] + ╰─ {month} [2] ╰─ / - ╰─ {day} [*] + ╰─ {day} [3] + === Chains + 1 + 2 + 3 "); let request = RequestBuilder::new().path("/2024").build()?; @@ -116,11 +122,15 @@ fn test_dynamic_inline() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path / - ╰─ {year} [*] + ╰─ {year} [1] ╰─ - - ╰─ {month} [*] + ╰─ {month} [2] ╰─ - - ╰─ {day} [*] + ╰─ {day} [3] + === Chains + 1 + 2 + 3 "); let request = RequestBuilder::new().path("/2024").build()?; @@ -180,7 +190,9 @@ fn test_dynamic_greedy() -> Result<(), Box> { / ╰─ {file} ╰─ . - ╰─ {extension} [*] + ╰─ {extension} [1] + === Chains + 1 "); let request = RequestBuilder::new().path("/report").build()?; @@ -235,12 +247,17 @@ fn test_dynamic_priority() -> Result<(), Box> { === Path / ├─ robots. - │ ├─ txt [*] - │ ╰─ {extension} [*] + │ ├─ txt [1] + │ ╰─ {extension} [2] ╰─ {name} ╰─ . - ├─ txt [*] - ╰─ {extension} [*] + ├─ txt [3] + ╰─ {extension} [4] + === Chains + 1 + 2 + 3 + 4 "); let request = RequestBuilder::new().path("/robots.txt").build()?; diff --git a/tests/encoding.rs b/tests/encoding.rs index 77b4e7f9..a1c3f0b6 100644 --- a/tests/encoding.rs +++ b/tests/encoding.rs @@ -15,7 +15,9 @@ fn test_encoding_decoding() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path /users/ - ╰─ {name} [*] + ╰─ {name} [1] + === Chains + 1 "); let request = RequestBuilder::new().path("/users/jos%C3%A9").build()?; // "José" @@ -45,7 +47,9 @@ fn test_encoding_space() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path /user files/ - ╰─ {name} [*] + ╰─ {name} [1] + === Chains + 1 "); let request = RequestBuilder::new() @@ -79,8 +83,11 @@ fn test_encoding_slash() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path / - ├─ {name} [*] - ╰─ {*path} [*] + ├─ {name} [1] + ╰─ {*path} [2] + === Chains + 1 + 2 "); let request = RequestBuilder::new().path("/johndoe").build()?; diff --git a/tests/escape.rs b/tests/escape.rs index 29f4634d..0ec03107 100644 --- a/tests/escape.rs +++ b/tests/escape.rs @@ -11,7 +11,9 @@ fn test_escape_parameter() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path - /users/{id} [*] + /users/{id} [1] + === Chains + 1 "); let request = RequestBuilder::new().path("/users/{id}").build()?; @@ -43,7 +45,9 @@ fn test_escape_group() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path - /(not-optional) [*] + /(not-optional) [1] + === Chains + 1 "); let request = RequestBuilder::new().path("/(not-optional)").build()?; @@ -77,9 +81,11 @@ fn test_escape_nested() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path - / [*] - ╰─ a [*] - ╰─ /{param} [*] + / [1] + ╰─ a [1] + ╰─ /{param} [1] + === Chains + 1 "); let request = RequestBuilder::new().path("/a/{param}").build()?; diff --git a/tests/gitlab.rs b/tests/gitlab.rs index b3b80e32..0b91465f 100644 --- a/tests/gitlab.rs +++ b/tests/gitlab.rs @@ -42,3075 +42,3075 @@ fn test_gitlab_display() -> Result<(), Box> { } insta::assert_snapshot!(router.path, @r" - / [*] - ├─ dashboard [*] - │ ╰─ / [*] - │ ├─ todos [*] - │ │ ╰─ / [*] - │ │ ├─ bulk_restore [*] - │ │ │ ╰─ / [*] - │ │ ├─ destroy_all [*] - │ │ │ ╰─ / [*] - │ │ ├─ vue [*] - │ │ │ ╰─ / [*] - │ │ ╰─ {id} [*] - │ │ ╰─ / [*] - │ │ ╰─ restore [*] - │ │ ╰─ / [*] - │ ├─ activity [*] - │ │ ╰─ / [*] - │ ├─ projects [*] - │ │ ╰─ / [*] - │ │ ├─ contributed [*] - │ │ │ ╰─ / [*] - │ │ ├─ personal [*] - │ │ │ ╰─ / [*] - │ │ ├─ removed [*] - │ │ │ ╰─ / [*] - │ │ ├─ starred [*] - │ │ │ ╰─ / [*] - │ │ ╰─ member [*] - │ │ ╰─ / [*] - │ ├─ snippets [*] - │ │ ╰─ / [*] - │ ├─ groups [*] - │ │ ╰─ / [*] - │ ├─ issues [*] - │ │ ╰─ / [*] - │ ├─ labels [*] - │ │ ╰─ / [*] + / [575] + ├─ dashboard [898] + │ ╰─ / [898] + │ ├─ todos [892] + │ │ ╰─ / [892] + │ │ ├─ bulk_restore [890] + │ │ │ ╰─ / [890] + │ │ ├─ destroy_all [889] + │ │ │ ╰─ / [889] + │ │ ├─ vue [888] + │ │ │ ╰─ / [888] + │ │ ╰─ {id} [893] + │ │ ╰─ / [893] + │ │ ╰─ restore [891] + │ │ ╰─ / [891] + │ ├─ activity [882] + │ │ ╰─ / [882] + │ ├─ projects [879] + │ │ ╰─ / [879] + │ │ ├─ contributed [895] + │ │ │ ╰─ / [895] + │ │ ├─ personal [896] + │ │ │ ╰─ / [896] + │ │ ├─ removed [878] + │ │ │ ╰─ / [878] + │ │ ├─ starred [894] + │ │ │ ╰─ / [894] + │ │ ╰─ member [897] + │ │ ╰─ / [897] + │ ├─ snippets [887] + │ │ ╰─ / [887] + │ ├─ groups [886] + │ │ ╰─ / [886] + │ ├─ issues [880] + │ │ ╰─ / [880] + │ ├─ labels [885] + │ │ ╰─ / [885] │ ╰─ m - │ ├─ erge_requests [*] - │ │ ╰─ / [*] - │ │ ╰─ search [*] - │ │ ╰─ / [*] - │ ╰─ ilestones [*] - │ ╰─ / [*] - ├─ jwt/auth [*] - │ ╰─ / [*] - ├─ explore [*] - │ ╰─ / [*] - │ ├─ dependencies [*] - │ │ ╰─ / [*] - │ ├─ projects [*] - │ │ ╰─ / [*] + │ ├─ erge_requests [881] + │ │ ╰─ / [881] + │ │ ╰─ search [883] + │ │ ╰─ / [883] + │ ╰─ ilestones [884] + │ ╰─ / [884] + ├─ jwt/auth [45] + │ ╰─ / [45] + ├─ explore [660] + │ ╰─ / [660] + │ ├─ dependencies [650] + │ │ ╰─ / [650] + │ ├─ projects [655] + │ │ ╰─ / [655] │ │ ├─ t - │ │ │ ├─ rending [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ opics [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ {topic_name} [*] - │ │ │ ├─ / [*] + │ │ │ ├─ rending [651] + │ │ │ │ ╰─ / [651] + │ │ │ ╰─ opics [653] + │ │ │ ╰─ / [653] + │ │ │ ╰─ {topic_name} [654] + │ │ │ ├─ / [654] │ │ │ ╰─ . - │ │ │ ╰─ {format} [*] - │ │ │ ╰─ / [*] - │ │ ╰─ starred [*] - │ │ ╰─ / [*] - │ ├─ snippets [*] - │ │ ╰─ / [*] - │ ├─ catalog [*] - │ │ ╰─ / [*] + │ │ │ ╰─ {format} [654] + │ │ │ ╰─ / [654] + │ │ ╰─ starred [652] + │ │ ╰─ / [652] + │ ├─ snippets [659] + │ │ ╰─ / [659] + │ ├─ catalog [657] + │ │ ╰─ / [657] │ │ ├─ {*full_path} - │ │ │ ╰─ / [*] - │ │ ╰─ {*full_path} [*] - │ ╰─ groups [*] - │ ╰─ / [*] - ├─ groups [*] - │ ╰─ / [*] - │ ├─ new [*] - │ │ ╰─ / [*] + │ │ │ ╰─ / [658] + │ │ ╰─ {*full_path} [658] + │ ╰─ groups [656] + │ ╰─ / [656] + ├─ groups [259] + │ ╰─ / [259] + │ ├─ new [260] + │ │ ╰─ / [260] │ ├─ {*group_id} │ │ ╰─ /-/ │ │ ├─ m - │ │ │ ├─ erge_requests/bulk_update [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ ilestones [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ new [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {id} [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ merge_requests [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ participants [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ issues [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ labels [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ edit [*] - │ │ │ ╰─ / [*] - │ │ ├─ notification_setting [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ erge_requests/bulk_update [383] + │ │ │ │ ╰─ / [383] + │ │ │ ╰─ ilestones [482] + │ │ │ ╰─ / [482] + │ │ │ ├─ new [483] + │ │ │ │ ╰─ / [483] + │ │ │ ╰─ {id} [485] + │ │ │ ╰─ / [485] + │ │ │ ├─ merge_requests [479] + │ │ │ │ ╰─ / [479] + │ │ │ ├─ participants [480] + │ │ │ │ ╰─ / [480] + │ │ │ ├─ issues [478] + │ │ │ │ ╰─ / [478] + │ │ │ ├─ labels [481] + │ │ │ │ ╰─ / [481] + │ │ │ ╰─ edit [484] + │ │ │ ╰─ / [484] + │ │ ├─ notification_setting [326] + │ │ │ ╰─ / [326] │ │ ├─ u - │ │ │ ├─ sage_quotas [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ subscription_history [*] - │ │ │ │ │ ├─ / [*] + │ │ │ ├─ sage_quotas [334] + │ │ │ │ ╰─ / [334] + │ │ │ │ ├─ subscription_history [333] + │ │ │ │ │ ├─ / [333] │ │ │ │ │ ╰─ . - │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ pending_members [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ ploads [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ authorize [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ {format} [333] + │ │ │ │ │ ╰─ / [333] + │ │ │ │ ╰─ pending_members [332] + │ │ │ │ ╰─ / [332] + │ │ │ ╰─ ploads [509] + │ │ │ ╰─ / [509] + │ │ │ ├─ authorize [508] + │ │ │ │ ╰─ / [508] │ │ │ ╰─ {secret} │ │ │ ╰─ / - │ │ │ ╰─ {filename} [*] - │ │ │ ├─ / [*] + │ │ │ ╰─ {filename} [507] + │ │ │ ├─ / [507] │ │ │ ╰─ . - │ │ │ ╰─ {format} [*] - │ │ │ ╰─ / [*] - │ │ ├─ variables [*] - │ │ │ ╰─ / [*] + │ │ │ ╰─ {format} [507] + │ │ │ ╰─ / [507] + │ │ ├─ variables [464] + │ │ │ ╰─ / [464] │ │ ├─ b - │ │ │ ├─ illings [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ refresh_seats [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ oards [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ {id} [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ illings [346] + │ │ │ │ ╰─ / [346] + │ │ │ │ ╰─ refresh_seats [345] + │ │ │ │ ╰─ / [345] + │ │ │ ╰─ oards [510] + │ │ │ ╰─ / [510] + │ │ │ ╰─ {id} [511] + │ │ │ ╰─ / [511] │ │ ├─ h - │ │ │ ├─ ooks [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ ooks [338] + │ │ │ │ ╰─ / [338] │ │ │ │ ├─ {hook_id} │ │ │ │ │ ╰─ /hook_logs/ - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ retry [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ edit [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ test [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ arbor/repositories [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ {id} [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ {id} [337] + │ │ │ │ │ ╰─ / [337] + │ │ │ │ │ ╰─ retry [336] + │ │ │ │ │ ╰─ / [336] + │ │ │ │ ╰─ {id} [340] + │ │ │ │ ╰─ / [340] + │ │ │ │ ├─ edit [339] + │ │ │ │ │ ╰─ / [339] + │ │ │ │ ╰─ test [335] + │ │ │ │ ╰─ / [335] + │ │ │ ╰─ arbor/repositories [524] + │ │ │ ╰─ / [524] + │ │ │ ├─ {id} [525] + │ │ │ │ ╰─ / [525] │ │ │ ╰─ {repository_id} - │ │ │ ╰─ /artifacts [*] - │ │ │ ╰─ / [*] + │ │ │ ╰─ /artifacts [523] + │ │ │ ╰─ / [523] │ │ │ ╰─ {artifact_id} - │ │ │ ╰─ /tags [*] - │ │ │ ╰─ / [*] + │ │ │ ╰─ /tags [522] + │ │ │ ╰─ / [522] │ │ ├─ group_ - │ │ │ ├─ members [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ bulk_reassignment_file [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ request_access [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ export_csv [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ leave [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ approve_access_request [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ resend_invite [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ override [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ unban [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ ban [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ members [504] + │ │ │ │ ╰─ / [504] + │ │ │ │ ├─ bulk_reassignment_file [502] + │ │ │ │ │ ╰─ / [502] + │ │ │ │ ├─ request_access [292] + │ │ │ │ │ ╰─ / [292] + │ │ │ │ ├─ export_csv [291] + │ │ │ │ │ ╰─ / [291] + │ │ │ │ ├─ leave [503] + │ │ │ │ │ ╰─ / [503] + │ │ │ │ ╰─ {id} [505] + │ │ │ │ ╰─ / [505] + │ │ │ │ ├─ approve_access_request [293] + │ │ │ │ │ ╰─ / [293] + │ │ │ │ ├─ resend_invite [501] + │ │ │ │ │ ╰─ / [501] + │ │ │ │ ├─ override [288] + │ │ │ │ │ ╰─ / [288] + │ │ │ │ ├─ unban [289] + │ │ │ │ │ ╰─ / [289] + │ │ │ │ ╰─ ban [290] + │ │ │ │ ╰─ / [290] │ │ │ ╰─ links/ - │ │ │ ╰─ {id} [*] - │ │ │ ╰─ / [*] + │ │ │ ╰─ {id} [506] + │ │ │ ╰─ / [506] │ │ ├─ epic - │ │ │ ├─ _boards [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ s [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ bulk_update [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ new [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ _boards [385] + │ │ │ │ ╰─ / [385] + │ │ │ │ ╰─ {id} [386] + │ │ │ │ ╰─ / [386] + │ │ │ ╰─ s [366] + │ │ │ ╰─ / [366] + │ │ │ ├─ bulk_update [364] + │ │ │ │ ╰─ / [364] + │ │ │ ├─ new [367] + │ │ │ │ ╰─ / [367] │ │ │ ├─ {epic_id} │ │ │ │ ╰─ / - │ │ │ │ ├─ related_epic_links [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ issues [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ links [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ notes [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ toggle_award_emoji [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {id} [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ realtime_changes [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ edit [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ related_epic_links [362] + │ │ │ │ │ ╰─ / [362] + │ │ │ │ │ ╰─ {id} [363] + │ │ │ │ │ ╰─ / [363] + │ │ │ │ ├─ issues [355] + │ │ │ │ │ ╰─ / [355] + │ │ │ │ │ ╰─ {id} [356] + │ │ │ │ │ ╰─ / [356] + │ │ │ │ ├─ links [360] + │ │ │ │ │ ╰─ / [360] + │ │ │ │ │ ╰─ {id} [361] + │ │ │ │ │ ╰─ / [361] + │ │ │ │ ╰─ notes [358] + │ │ │ │ ╰─ / [358] + │ │ │ │ ╰─ {id} [359] + │ │ │ │ ╰─ / [359] + │ │ │ │ ╰─ toggle_award_emoji [357] + │ │ │ │ ╰─ / [357] + │ │ │ ╰─ {id} [369] + │ │ │ ╰─ / [369] + │ │ │ ├─ realtime_changes [353] + │ │ │ │ ╰─ / [353] + │ │ │ ├─ edit [368] + │ │ │ │ ╰─ / [368] │ │ │ ├─ toggle_ - │ │ │ │ ├─ subscription [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ award_emoji [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ subscription [354] + │ │ │ │ │ ╰─ / [354] + │ │ │ │ ╰─ award_emoji [365] + │ │ │ │ ╰─ / [365] │ │ │ ╰─ d - │ │ │ ├─ iscussions [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ iscussions [352] + │ │ │ │ ╰─ / [352] │ │ │ ╰─ escriptions/ - │ │ │ ╰─ {version_id} [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ diff [*] - │ │ │ ╰─ / [*] + │ │ │ ╰─ {version_id} [351] + │ │ │ ╰─ / [351] + │ │ │ ╰─ diff [350] + │ │ │ ╰─ / [350] │ │ ├─ l - │ │ │ ├─ abels [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ new [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ toggle_subscription [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ edit [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ abels [468] + │ │ │ │ ╰─ / [468] + │ │ │ │ ├─ new [469] + │ │ │ │ │ ╰─ / [469] + │ │ │ │ ╰─ {id} [471] + │ │ │ │ ╰─ / [471] + │ │ │ │ ├─ toggle_subscription [467] + │ │ │ │ │ ╰─ / [467] + │ │ │ │ ╰─ edit [470] + │ │ │ │ ╰─ / [470] │ │ │ ╰─ dap - │ │ │ ├─ /sync [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ _group_links [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ {id} [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ /sync [322] + │ │ │ │ ╰─ / [322] + │ │ │ ╰─ _group_links [327] + │ │ │ ╰─ / [327] + │ │ │ ╰─ {id} [328] + │ │ │ ╰─ / [328] │ │ ├─ a - │ │ │ ├─ dd_ons/discover_duo_pro [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ chievements [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ new [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ ├─ dd_ons/discover_duo_pro [405] + │ │ │ │ ╰─ / [405] + │ │ │ ├─ chievements [538] + │ │ │ │ ╰─ / [538] + │ │ │ │ ├─ new [539] + │ │ │ │ │ ╰─ / [539] │ │ │ │ ╰─ {id} - │ │ │ │ ╰─ /edit [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ nalytics [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ type_of_work/tasks_by_type [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ top_labels [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ merge_request_analytics [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ productivity_analytics [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ value_stream_analytics [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ value_streams [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ ╰─ /edit [540] + │ │ │ │ ╰─ / [540] + │ │ │ ├─ nalytics [295] + │ │ │ │ ╰─ / [295] + │ │ │ │ ├─ type_of_work/tasks_by_type [321] + │ │ │ │ │ ╰─ / [321] + │ │ │ │ │ ╰─ top_labels [320] + │ │ │ │ │ ╰─ / [320] + │ │ │ │ ├─ merge_request_analytics [302] + │ │ │ │ │ ╰─ / [302] + │ │ │ │ ├─ productivity_analytics [300] + │ │ │ │ │ ╰─ / [300] + │ │ │ │ ├─ value_stream_analytics [304] + │ │ │ │ │ ╰─ / [304] + │ │ │ │ │ ├─ value_streams [311] + │ │ │ │ │ │ ╰─ / [311] + │ │ │ │ │ │ ├─ new [312] + │ │ │ │ │ │ │ ╰─ / [312] │ │ │ │ │ │ ├─ {value_stream_id} - │ │ │ │ │ │ │ ╰─ /stages [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ╰─ /stages [310] + │ │ │ │ │ │ │ ╰─ / [310] │ │ │ │ │ │ │ ╰─ {id} │ │ │ │ │ │ │ ╰─ / - │ │ │ │ │ │ │ ├─ average [*] - │ │ │ │ │ │ │ │ ├─ / [*] - │ │ │ │ │ │ │ │ ╰─ _duration_chart [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ├─ records [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ├─ median [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ count [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ edit [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ time_summary [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ cycle_times [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ lead_times [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ summary [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ repository_analytics [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ├─ average [307] + │ │ │ │ │ │ │ │ ├─ / [307] + │ │ │ │ │ │ │ │ ╰─ _duration_chart [305] + │ │ │ │ │ │ │ │ ╰─ / [305] + │ │ │ │ │ │ │ ├─ records [308] + │ │ │ │ │ │ │ │ ╰─ / [308] + │ │ │ │ │ │ │ ├─ median [306] + │ │ │ │ │ │ │ │ ╰─ / [306] + │ │ │ │ │ │ │ ╰─ count [309] + │ │ │ │ │ │ │ ╰─ / [309] + │ │ │ │ │ │ ╰─ {id} [314] + │ │ │ │ │ │ ╰─ / [314] + │ │ │ │ │ │ ╰─ edit [313] + │ │ │ │ │ │ ╰─ / [313] + │ │ │ │ │ ├─ time_summary [316] + │ │ │ │ │ │ ╰─ / [316] + │ │ │ │ │ ├─ cycle_times [318] + │ │ │ │ │ │ ╰─ / [318] + │ │ │ │ │ ├─ lead_times [317] + │ │ │ │ │ │ ╰─ / [317] + │ │ │ │ │ ╰─ summary [315] + │ │ │ │ │ ╰─ / [315] + │ │ │ │ ├─ repository_analytics [303] + │ │ │ │ │ ╰─ / [303] │ │ │ │ ├─ c - │ │ │ │ │ ├─ overage_reports [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ ycle_analytics [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ i_cd [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ overage_reports [301] + │ │ │ │ │ │ ╰─ / [301] + │ │ │ │ │ ├─ ycle_analytics [319] + │ │ │ │ │ │ ╰─ / [319] + │ │ │ │ │ ╰─ i_cd [297] + │ │ │ │ │ ╰─ / [297] │ │ │ │ ╰─ d - │ │ │ │ ├─ evops_adoption [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ ashboards [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ evops_adoption [299] + │ │ │ │ │ ╰─ / [299] + │ │ │ │ ╰─ ashboards [298] + │ │ │ │ ╰─ / [298] │ │ │ │ ├─ {*vueroute} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*vueroute} [*] - │ │ │ ├─ vatar [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ / [298] + │ │ │ │ ╰─ {*vueroute} [298] + │ │ │ ├─ vatar [488] + │ │ │ │ ╰─ / [488] │ │ │ ╰─ u │ │ │ ├─ tocomplete_sources/ - │ │ │ │ ├─ vulnerabilities [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ commands [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ labels [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ epics [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ wikis [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ vulnerabilities [343] + │ │ │ │ │ ╰─ / [343] + │ │ │ │ ├─ commands [530] + │ │ │ │ │ ╰─ / [530] + │ │ │ │ ├─ labels [529] + │ │ │ │ │ ╰─ / [529] + │ │ │ │ ├─ epics [341] + │ │ │ │ │ ╰─ / [341] + │ │ │ │ ├─ wikis [344] + │ │ │ │ │ ╰─ / [344] │ │ │ │ ├─ m - │ │ │ │ │ ├─ ilestones [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ ilestones [531] + │ │ │ │ │ │ ╰─ / [531] │ │ │ │ │ ╰─ e - │ │ │ │ │ ├─ rge_requests [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ mbers [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ rge_requests [528] + │ │ │ │ │ │ ╰─ / [528] + │ │ │ │ │ ╰─ mbers [526] + │ │ │ │ │ ╰─ / [526] │ │ │ │ ╰─ i - │ │ │ │ ├─ terations [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ ssues [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ dit_events [*] - │ │ │ ╰─ / [*] + │ │ │ │ ├─ terations [342] + │ │ │ │ │ ╰─ / [342] + │ │ │ │ ╰─ ssues [527] + │ │ │ │ ╰─ / [527] + │ │ │ ╰─ dit_events [331] + │ │ │ ╰─ / [331] │ │ ├─ c │ │ │ ├─ rm/ - │ │ │ │ ├─ organizations [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ organizations [535] + │ │ │ │ │ ╰─ / [535] + │ │ │ │ │ ├─ new [536] + │ │ │ │ │ │ ╰─ / [536] │ │ │ │ │ ╰─ {id} - │ │ │ │ │ ╰─ /edit [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ contacts [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ new [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ /edit [537] + │ │ │ │ │ ╰─ / [537] + │ │ │ │ ╰─ contacts [532] + │ │ │ │ ╰─ / [532] + │ │ │ │ ├─ new [533] + │ │ │ │ │ ╰─ / [533] │ │ │ │ ╰─ {id} - │ │ │ │ ╰─ /edit [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ ustom_emoji [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ new [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ adences [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ new [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ╰─ /edit [534] + │ │ │ │ ╰─ / [534] + │ │ │ ├─ ustom_emoji [472] + │ │ │ │ ╰─ / [472] + │ │ │ │ ╰─ new [473] + │ │ │ │ ╰─ / [473] + │ │ │ ├─ adences [378] + │ │ │ │ ╰─ / [378] + │ │ │ │ ├─ new [379] + │ │ │ │ │ ╰─ / [379] │ │ │ │ ├─ {iteration_cadence_id} - │ │ │ │ │ ╰─ /iterations [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ edit [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ edit [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ /iterations [374] + │ │ │ │ │ ╰─ / [374] + │ │ │ │ │ ├─ new [375] + │ │ │ │ │ │ ╰─ / [375] + │ │ │ │ │ ╰─ {id} [377] + │ │ │ │ │ ╰─ / [377] + │ │ │ │ │ ╰─ edit [376] + │ │ │ │ │ ╰─ / [376] + │ │ │ │ ├─ {id} [381] + │ │ │ │ │ ╰─ / [381] + │ │ │ │ │ ╰─ edit [380] + │ │ │ │ │ ╰─ / [380] │ │ │ │ ├─ {*vueroute} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ / [378] + │ │ │ │ │ ├─ new [379] + │ │ │ │ │ │ ╰─ / [379] │ │ │ │ │ ├─ {iteration_cadence_id} - │ │ │ │ │ │ ╰─ /iterations [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ edit [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ edit [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*vueroute} [*] - │ │ │ ├─ hildren [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ lusters [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ new_cluster_docs [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ╰─ /iterations [374] + │ │ │ │ │ │ ╰─ / [374] + │ │ │ │ │ │ ├─ new [375] + │ │ │ │ │ │ │ ╰─ / [375] + │ │ │ │ │ │ ╰─ {id} [377] + │ │ │ │ │ │ ╰─ / [377] + │ │ │ │ │ │ ╰─ edit [376] + │ │ │ │ │ │ ╰─ / [376] + │ │ │ │ │ ╰─ {id} [381] + │ │ │ │ │ ╰─ / [381] + │ │ │ │ │ ╰─ edit [380] + │ │ │ │ │ ╰─ / [380] + │ │ │ │ ╰─ {*vueroute} [378] + │ │ │ ├─ hildren [465] + │ │ │ │ ╰─ / [465] + │ │ │ ├─ lusters [499] + │ │ │ │ ╰─ / [499] + │ │ │ │ ├─ new_cluster_docs [491] + │ │ │ │ │ ╰─ / [491] │ │ │ │ ├─ c - │ │ │ │ │ ├─ reate_user [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ onnect [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ reate_user [492] + │ │ │ │ │ │ ╰─ / [492] + │ │ │ │ │ ╰─ onnect [490] + │ │ │ │ │ ╰─ / [490] │ │ │ │ ├─ {cluster_id} - │ │ │ │ │ ╰─ /integration/create_or_update [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ /integration/create_or_update [493] + │ │ │ │ │ ╰─ / [493] + │ │ │ │ ╰─ {id} [500] + │ │ │ │ ╰─ / [500] │ │ │ │ ├─ cl - │ │ │ │ │ ├─ uster_status [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ ear_cache [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ environments [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ metrics [*] - │ │ │ │ ├─ / [*] - │ │ │ │ ╰─ _dashboard [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ uster_status [497] + │ │ │ │ │ │ ╰─ / [497] + │ │ │ │ │ ╰─ ear_cache [498] + │ │ │ │ │ ╰─ / [498] + │ │ │ │ ├─ environments [495] + │ │ │ │ │ ╰─ / [495] + │ │ │ │ ╰─ metrics [494] + │ │ │ │ ├─ / [494] + │ │ │ │ ╰─ _dashboard [496] + │ │ │ │ ╰─ / [496] │ │ │ ╰─ o │ │ │ ├─ nt - │ │ │ │ ├─ ribution_analytics [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ ainer_registries [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ mment_templates [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ {id} [*] - │ │ │ ╰─ / [*] + │ │ │ │ ├─ ribution_analytics [296] + │ │ │ │ │ ╰─ / [296] + │ │ │ │ ╰─ ainer_registries [519] + │ │ │ │ ╰─ / [519] + │ │ │ │ ╰─ {id} [520] + │ │ │ │ ╰─ / [520] + │ │ │ ╰─ mment_templates [348] + │ │ │ ╰─ / [348] + │ │ │ ╰─ {id} [349] + │ │ │ ╰─ / [349] │ │ ├─ d │ │ │ ├─ ep │ │ │ │ ├─ endenc - │ │ │ │ │ ├─ y_proxy [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ ies [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ y_proxy [521] + │ │ │ │ │ │ ╰─ / [521] + │ │ │ │ │ ╰─ ies [408] + │ │ │ │ │ ╰─ / [408] │ │ │ │ │ ╰─ l - │ │ │ │ │ ├─ ocations [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ icenses [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ ocations [407] + │ │ │ │ │ │ ╰─ / [407] + │ │ │ │ │ ╰─ icenses [406] + │ │ │ │ │ ╰─ / [406] │ │ │ │ ╰─ loy_tokens/ │ │ │ │ ╰─ {id} - │ │ │ │ ╰─ /revoke [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ iscover [*] - │ │ │ ╰─ / [*] + │ │ │ │ ╰─ /revoke [487] + │ │ │ │ ╰─ / [487] + │ │ │ ╰─ iscover [426] + │ │ │ ╰─ / [426] │ │ ├─ i - │ │ │ ├─ terations [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ new [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ edit [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ mport [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ terations [370] + │ │ │ │ ╰─ / [370] + │ │ │ │ ├─ new [371] + │ │ │ │ │ ╰─ / [371] + │ │ │ │ ╰─ {id} [373] + │ │ │ │ ╰─ / [373] + │ │ │ │ ╰─ edit [372] + │ │ │ │ ╰─ / [372] + │ │ │ ├─ mport [489] + │ │ │ │ ╰─ / [489] │ │ │ ├─ ssues - │ │ │ │ ├─ /bulk_update [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ _analytics [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ /bulk_update [382] + │ │ │ │ │ ╰─ / [382] + │ │ │ │ ╰─ _analytics [323] + │ │ │ │ ╰─ / [323] │ │ │ ╰─ n - │ │ │ ├─ frastructure_registry [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ sights [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ query [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ frastructure_registry [477] + │ │ │ │ ╰─ / [477] + │ │ │ ╰─ sights [325] + │ │ │ ╰─ / [325] + │ │ │ ╰─ query [324] + │ │ │ ╰─ / [324] │ │ ├─ p - │ │ │ ├─ ush_rules [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ ackages [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ ush_rules [409] + │ │ │ │ ╰─ / [409] + │ │ │ ├─ ackages [474] + │ │ │ │ ╰─ / [474] + │ │ │ │ ╰─ {id} [475] + │ │ │ │ ╰─ / [475] │ │ │ ╰─ r - │ │ │ ├─ eview_markdown [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ eview_markdown [543] + │ │ │ │ ╰─ / [543] │ │ │ ╰─ otected_ - │ │ │ ├─ environments [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ branches [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ {id} [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ environments [387] + │ │ │ │ ╰─ / [387] + │ │ │ │ ╰─ {id} [388] + │ │ │ │ ╰─ / [388] + │ │ │ ╰─ branches [410] + │ │ │ ╰─ / [410] + │ │ │ ╰─ {id} [411] + │ │ │ ╰─ / [411] │ │ ├─ r - │ │ │ ├─ unners [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ dashboard [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ new [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ pause [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ edit [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ ├─ unners [515] + │ │ │ │ ╰─ / [515] + │ │ │ │ ├─ dashboard [427] + │ │ │ │ │ ╰─ / [427] + │ │ │ │ ├─ new [516] + │ │ │ │ │ ╰─ / [516] + │ │ │ │ ╰─ {id} [518] + │ │ │ │ ╰─ / [518] + │ │ │ │ ├─ pause [514] + │ │ │ │ │ ╰─ / [514] + │ │ │ │ ├─ edit [517] + │ │ │ │ │ ╰─ / [517] │ │ │ │ ╰─ re - │ │ │ │ ├─ gister [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ sume [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ gister [512] + │ │ │ │ │ ╰─ / [512] + │ │ │ │ ╰─ sume [513] + │ │ │ │ ╰─ / [513] │ │ │ ├─ e - │ │ │ │ ├─ leases [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ store [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ oadmap [*] - │ │ │ ╰─ / [*] + │ │ │ │ ├─ leases [486] + │ │ │ │ │ ╰─ / [486] + │ │ │ │ ╰─ store [419] + │ │ │ │ ╰─ / [419] + │ │ │ ╰─ oadmap [418] + │ │ │ ╰─ / [418] │ │ ├─ s - │ │ │ ├─ hared_projects [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ cim_oauth [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ aml [*] - │ │ │ │ ├─ / [*] - │ │ │ │ │ ├─ callback [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ ├─ hared_projects [466] + │ │ │ │ ╰─ / [466] + │ │ │ ├─ cim_oauth [417] + │ │ │ │ ╰─ / [417] + │ │ │ ├─ aml [416] + │ │ │ │ ├─ / [416] + │ │ │ │ │ ├─ callback [412] + │ │ │ │ │ │ ╰─ / [412] │ │ │ │ │ ├─ u - │ │ │ │ │ │ ├─ pdate_microsoft_application [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ nlink [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ sso [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ _group_links [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ pdate_microsoft_application [415] + │ │ │ │ │ │ │ ╰─ / [415] + │ │ │ │ │ │ ╰─ nlink [414] + │ │ │ │ │ │ ╰─ / [414] + │ │ │ │ │ ╰─ sso [413] + │ │ │ │ │ ╰─ / [413] + │ │ │ │ ╰─ _group_links [329] + │ │ │ │ ╰─ / [329] + │ │ │ │ ╰─ {id} [330] + │ │ │ │ ╰─ / [330] │ │ │ ╰─ e - │ │ │ ├─ rvice_accounts [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ new [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ edit [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ ├─ rvice_accounts [420] + │ │ │ │ ╰─ / [420] + │ │ │ │ ├─ new [421] + │ │ │ │ │ ╰─ / [421] + │ │ │ │ ├─ {id} [423] + │ │ │ │ │ ╰─ / [423] + │ │ │ │ │ ╰─ edit [422] + │ │ │ │ │ ╰─ / [422] │ │ │ │ ├─ {*vueroute} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ edit [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*vueroute} [*] - │ │ │ ├─ at_usage [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ / [420] + │ │ │ │ │ ├─ new [421] + │ │ │ │ │ │ ╰─ / [421] + │ │ │ │ │ ╰─ {id} [423] + │ │ │ │ │ ╰─ / [423] + │ │ │ │ │ ╰─ edit [422] + │ │ │ │ │ ╰─ / [422] + │ │ │ │ ╰─ {*vueroute} [420] + │ │ │ ├─ at_usage [347] + │ │ │ │ ╰─ / [347] │ │ │ ├─ curity/ - │ │ │ │ ├─ merge_commit_reports [*] - │ │ │ │ │ ├─ / [*] + │ │ │ │ ├─ merge_commit_reports [400] + │ │ │ │ │ ├─ / [400] │ │ │ │ │ ╰─ . - │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ vulnerabilities [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ policies [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ schema [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ {format} [400] + │ │ │ │ │ ╰─ / [400] + │ │ │ │ ├─ vulnerabilities [390] + │ │ │ │ │ ╰─ / [390] + │ │ │ │ ├─ policies [397] + │ │ │ │ │ ╰─ / [397] + │ │ │ │ │ ├─ schema [396] + │ │ │ │ │ │ ╰─ / [396] + │ │ │ │ │ ├─ new [398] + │ │ │ │ │ │ ╰─ / [398] │ │ │ │ │ ╰─ {id} - │ │ │ │ │ ╰─ /edit [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ /edit [399] + │ │ │ │ │ ╰─ / [399] │ │ │ │ ├─ c │ │ │ │ │ ├─ ompliance_ - │ │ │ │ │ │ ├─ standards_adherence_reports [*] - │ │ │ │ │ │ │ ├─ / [*] + │ │ │ │ │ │ ├─ standards_adherence_reports [403] + │ │ │ │ │ │ │ ├─ / [403] │ │ │ │ │ │ │ ╰─ . - │ │ │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ project_framework_reports [*] - │ │ │ │ │ │ │ ├─ / [*] + │ │ │ │ │ │ │ ╰─ {format} [403] + │ │ │ │ │ │ │ ╰─ / [403] + │ │ │ │ │ │ ├─ project_framework_reports [401] + │ │ │ │ │ │ │ ├─ / [401] │ │ │ │ │ │ │ ╰─ . - │ │ │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ framework_reports [*] - │ │ │ │ │ │ │ ├─ / [*] + │ │ │ │ │ │ │ ╰─ {format} [401] + │ │ │ │ │ │ │ ╰─ / [401] + │ │ │ │ │ │ ├─ framework_reports [404] + │ │ │ │ │ │ │ ├─ / [404] │ │ │ │ │ │ │ ╰─ . - │ │ │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ violation_reports [*] - │ │ │ │ │ │ │ ├─ / [*] + │ │ │ │ │ │ │ ╰─ {format} [404] + │ │ │ │ │ │ │ ╰─ / [404] + │ │ │ │ │ │ ├─ violation_reports [402] + │ │ │ │ │ │ │ ├─ / [402] │ │ │ │ │ │ │ ╰─ . - │ │ │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ dashboard [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ╰─ {format} [402] + │ │ │ │ │ │ │ ╰─ / [402] + │ │ │ │ │ │ ╰─ dashboard [391] + │ │ │ │ │ │ ╰─ / [391] │ │ │ │ │ │ ├─ {*vueroute} - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {*vueroute} [*] - │ │ │ │ │ ╰─ redentials [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ revoke [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ╰─ / [391] + │ │ │ │ │ │ ╰─ {*vueroute} [391] + │ │ │ │ │ ╰─ redentials [394] + │ │ │ │ │ ╰─ / [394] + │ │ │ │ │ ╰─ {id} [395] + │ │ │ │ │ ╰─ / [395] + │ │ │ │ │ ╰─ revoke [393] + │ │ │ │ │ ╰─ / [393] │ │ │ │ ╰─ d - │ │ │ │ ├─ ashboard [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ iscover [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ ashboard [389] + │ │ │ │ │ ╰─ / [389] + │ │ │ │ ╰─ iscover [392] + │ │ │ │ ╰─ / [392] │ │ │ ╰─ ttings/ - │ │ │ ├─ packages_and_registries [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ domain_verification [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ new [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ clean_certificate [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ retry_auto_ssl [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ verify [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ gitlab_duo_usage [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ merge_requests [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ integrations [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ reset [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ edit [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ test [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ workspaces [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ ci_cd [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ deploy_token/create [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ ├─ packages_and_registries [463] + │ │ │ │ ╰─ / [463] + │ │ │ ├─ domain_verification [277] + │ │ │ │ ╰─ / [277] + │ │ │ │ ├─ new [278] + │ │ │ │ │ ╰─ / [278] + │ │ │ │ ╰─ {id} [279] + │ │ │ │ ╰─ / [279] + │ │ │ │ ├─ clean_certificate [276] + │ │ │ │ │ ╰─ / [276] + │ │ │ │ ├─ retry_auto_ssl [275] + │ │ │ │ │ ╰─ / [275] + │ │ │ │ ╰─ verify [274] + │ │ │ │ ╰─ / [274] + │ │ │ ├─ gitlab_duo_usage [286] + │ │ │ │ ╰─ / [286] + │ │ │ ├─ merge_requests [280] + │ │ │ │ ╰─ / [280] + │ │ │ ├─ integrations [453] + │ │ │ │ ╰─ / [453] + │ │ │ │ ╰─ {id} [455] + │ │ │ │ ╰─ / [455] + │ │ │ │ ├─ reset [452] + │ │ │ │ │ ╰─ / [452] + │ │ │ │ ├─ edit [454] + │ │ │ │ │ ╰─ / [454] + │ │ │ │ ╰─ test [451] + │ │ │ │ ╰─ / [451] + │ │ │ ├─ workspaces [287] + │ │ │ │ ╰─ / [287] + │ │ │ ├─ ci_cd [446] + │ │ │ │ ╰─ / [446] + │ │ │ │ ├─ deploy_token/create [444] + │ │ │ │ │ ╰─ / [444] │ │ │ │ ├─ r - │ │ │ │ │ ├─ eset_registration_token [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ unner_setup_scripts [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ update_auto_devops [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ slack [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ slack_auth [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ eset_registration_token [442] + │ │ │ │ │ │ ╰─ / [442] + │ │ │ │ │ ╰─ unner_setup_scripts [445] + │ │ │ │ │ ╰─ / [445] + │ │ │ │ ╰─ update_auto_devops [443] + │ │ │ │ ╰─ / [443] + │ │ │ ├─ slack [457] + │ │ │ │ ╰─ / [457] + │ │ │ │ ╰─ slack_auth [456] + │ │ │ │ ╰─ / [456] │ │ │ ├─ a - │ │ │ │ ├─ ccess_tokens [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ ccess_tokens [450] + │ │ │ │ │ ╰─ / [450] │ │ │ │ │ ╰─ {id} - │ │ │ │ │ ╰─ /revoke [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ nalytics [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ pplications [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ new [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ renew [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ edit [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ /revoke [449] + │ │ │ │ │ ╰─ / [449] + │ │ │ │ ├─ nalytics [285] + │ │ │ │ │ ╰─ / [285] + │ │ │ │ ╰─ pplications [459] + │ │ │ │ ╰─ / [459] + │ │ │ │ ├─ new [460] + │ │ │ │ │ ╰─ / [460] + │ │ │ │ ╰─ {id} [462] + │ │ │ │ ╰─ / [462] + │ │ │ │ ├─ renew [458] + │ │ │ │ │ ╰─ / [458] + │ │ │ │ ╰─ edit [461] + │ │ │ │ ╰─ / [461] │ │ │ ╰─ r - │ │ │ ├─ oles_and_permissions [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ new [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ edit [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ oles_and_permissions [281] + │ │ │ │ ╰─ / [281] + │ │ │ │ ├─ new [282] + │ │ │ │ │ ╰─ / [282] + │ │ │ │ ╰─ {id} [284] + │ │ │ │ ╰─ / [284] + │ │ │ │ ╰─ edit [283] + │ │ │ │ ╰─ / [283] │ │ │ ╰─ epo - │ │ │ ├─ sitory [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ deploy_token/create [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ rting [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ sitory [448] + │ │ │ │ ╰─ / [448] + │ │ │ │ ╰─ deploy_token/create [447] + │ │ │ │ ╰─ / [447] + │ │ │ ╰─ rting [273] + │ │ │ ╰─ / [273] │ │ ├─ t - │ │ │ ├─ erraform_module_registry [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ wo_factor_auth [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ odos [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ erraform_module_registry [476] + │ │ │ │ ╰─ / [476] + │ │ │ ├─ wo_factor_auth [294] + │ │ │ │ ╰─ / [294] + │ │ │ ╰─ odos [384] + │ │ │ ╰─ / [384] │ │ ╰─ w - │ │ ├─ ikis [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ -/confluence [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ git_access [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ templates [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ pages [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ new [*] - │ │ │ │ ╰─ / [*] + │ │ ├─ ikis [265] + │ │ │ ╰─ / [265] + │ │ │ ├─ -/confluence [266] + │ │ │ │ ╰─ / [266] + │ │ │ ├─ git_access [261] + │ │ │ │ ╰─ / [261] + │ │ │ ├─ templates [263] + │ │ │ │ ╰─ / [263] + │ │ │ ├─ pages [262] + │ │ │ │ ╰─ / [262] + │ │ │ ├─ new [264] + │ │ │ │ ╰─ / [264] │ │ │ ├─ {*id} - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ preview_markdown [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ history [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ diff [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ edit [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ raw [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {*id} [*] - │ │ ╰─ ork_items [*] - │ │ ╰─ / [*] - │ │ ╰─ {iid} [*] - │ │ ╰─ / [*] + │ │ │ │ ╰─ / [272] + │ │ │ │ ├─ preview_markdown [271] + │ │ │ │ │ ╰─ / [271] + │ │ │ │ ├─ history [268] + │ │ │ │ │ ╰─ / [268] + │ │ │ │ ├─ diff [269] + │ │ │ │ │ ╰─ / [269] + │ │ │ │ ├─ edit [267] + │ │ │ │ │ ╰─ / [267] + │ │ │ │ ╰─ raw [270] + │ │ │ │ ╰─ / [270] + │ │ │ ╰─ {*id} [272] + │ │ ╰─ ork_items [541] + │ │ ╰─ / [541] + │ │ ╰─ {iid} [542] + │ │ ╰─ / [542] │ │ ╰─ descriptions/ - │ │ ╰─ {version_id} [*] - │ │ ╰─ / [*] - │ │ ╰─ diff [*] - │ │ ╰─ / [*] + │ │ ╰─ {version_id} [425] + │ │ ╰─ / [425] + │ │ ╰─ diff [424] + │ │ ╰─ / [424] │ ├─ {*id} - │ │ ├─ / [*] + │ │ ├─ / [441] │ │ │ ╰─ -/ - │ │ │ ├─ unfoldered_environment_names [*] - │ │ │ │ ├─ / [*] + │ │ │ ├─ unfoldered_environment_names [437] + │ │ │ │ ├─ / [437] │ │ │ │ ╰─ . - │ │ │ │ ╰─ {format} [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ merge_requests [*] - │ │ │ │ ├─ / [*] + │ │ │ │ ╰─ {format} [437] + │ │ │ │ ╰─ / [437] + │ │ │ ├─ merge_requests [430] + │ │ │ │ ├─ / [430] │ │ │ │ ╰─ . - │ │ │ │ ╰─ {format} [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ╰─ {format} [430] + │ │ │ │ ╰─ / [430] │ │ │ ├─ a - │ │ │ │ ├─ ctivity [*] - │ │ │ │ │ ├─ / [*] + │ │ │ │ ├─ ctivity [433] + │ │ │ │ │ ├─ / [433] │ │ │ │ │ ╰─ . - │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ rchived [*] - │ │ │ │ ├─ / [*] + │ │ │ │ │ ╰─ {format} [433] + │ │ │ │ │ ╰─ / [433] + │ │ │ │ ╰─ rchived [440] + │ │ │ │ ├─ / [440] │ │ │ │ ╰─ . - │ │ │ │ ╰─ {format} [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ projects [*] - │ │ │ │ ├─ / [*] + │ │ │ │ ╰─ {format} [440] + │ │ │ │ ╰─ / [440] + │ │ │ ├─ projects [431] + │ │ │ │ ├─ / [431] │ │ │ │ ╰─ . - │ │ │ │ ╰─ {format} [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ transfer [*] - │ │ │ │ ├─ / [*] + │ │ │ │ ╰─ {format} [431] + │ │ │ │ ╰─ / [431] + │ │ │ ├─ transfer [434] + │ │ │ │ ├─ / [434] │ │ │ │ ╰─ . - │ │ │ │ ╰─ {format} [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ╰─ {format} [434] + │ │ │ │ ╰─ / [434] │ │ │ ├─ i - │ │ │ │ ├─ nactive [*] - │ │ │ │ │ ├─ / [*] + │ │ │ │ ├─ nactive [439] + │ │ │ │ │ ├─ / [439] │ │ │ │ │ ╰─ . - │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ ssues [*] - │ │ │ │ ├─ / [*] + │ │ │ │ │ ╰─ {format} [439] + │ │ │ │ │ ╰─ / [439] + │ │ │ │ ╰─ ssues [429] + │ │ │ │ ├─ / [429] │ │ │ │ ╰─ . - │ │ │ │ ╰─ {format} [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ shared [*] - │ │ │ │ ├─ / [*] + │ │ │ │ ╰─ {format} [429] + │ │ │ │ ╰─ / [429] + │ │ │ ├─ shared [438] + │ │ │ │ ├─ / [438] │ │ │ │ ╰─ . - │ │ │ │ ╰─ {format} [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ╰─ {format} [438] + │ │ │ │ ╰─ / [438] │ │ │ ├─ d - │ │ │ │ ├─ ownload_export [*] - │ │ │ │ │ ├─ / [*] + │ │ │ │ ├─ ownload_export [436] + │ │ │ │ │ ├─ / [436] │ │ │ │ │ ╰─ . - │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ etails [*] - │ │ │ │ ├─ / [*] + │ │ │ │ │ ╰─ {format} [436] + │ │ │ │ │ ╰─ / [436] + │ │ │ │ ╰─ etails [432] + │ │ │ │ ├─ / [432] │ │ │ │ ╰─ . - │ │ │ │ ╰─ {format} [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ╰─ {format} [432] + │ │ │ │ ╰─ / [432] │ │ │ ╰─ e - │ │ │ ├─ xport [*] - │ │ │ │ ├─ / [*] + │ │ │ ├─ xport [435] + │ │ │ │ ├─ / [435] │ │ │ │ ╰─ . - │ │ │ │ ╰─ {format} [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ dit [*] - │ │ │ ├─ / [*] + │ │ │ │ ╰─ {format} [435] + │ │ │ │ ╰─ / [435] + │ │ │ ╰─ dit [428] + │ │ │ ├─ / [428] │ │ │ ╰─ . - │ │ │ ╰─ {format} [*] - │ │ │ ╰─ / [*] + │ │ │ ╰─ {format} [428] + │ │ │ ╰─ / [428] │ │ ╰─ . - │ │ ╰─ {format} [*] - │ │ ╰─ / [*] - │ ╰─ {*id} [*] + │ │ ╰─ {format} [441] + │ │ ╰─ / [441] + │ ╰─ {*id} [441] ├─ s - │ ├─ nippets [*] - │ │ ╰─ / [*] + │ ├─ nippets [1638] + │ │ ╰─ / [1638] │ │ ├─ {id} - │ │ │ ╰─ /raw [*] - │ │ │ ╰─ / [*] + │ │ │ ╰─ /raw [1637] + │ │ │ ╰─ / [1637] │ │ ├─ {*rest} - │ │ │ ╰─ / [*] - │ │ ╰─ {*rest} [*] - │ ├─ itemap [*] - │ │ ╰─ / [*] - │ ╰─ earch [*] - │ ╰─ / [*] + │ │ │ ╰─ / [1638] + │ │ ╰─ {*rest} [1638] + │ ├─ itemap [1639] + │ │ ╰─ / [1639] + │ ╰─ earch [39] + │ ╰─ / [39] │ ├─ a - │ │ ├─ ggregations [*] - │ │ │ ╰─ / [*] - │ │ ╰─ utocomplete [*] - │ │ ╰─ / [*] - │ ├─ opensearch [*] - │ │ ╰─ / [*] - │ ├─ settings [*] - │ │ ╰─ / [*] - │ ╰─ count [*] - │ ╰─ / [*] + │ │ ├─ ggregations [44] + │ │ │ ╰─ / [44] + │ │ ╰─ utocomplete [40] + │ │ ╰─ / [40] + │ ├─ opensearch [43] + │ │ ╰─ / [43] + │ ├─ settings [41] + │ │ ╰─ / [41] + │ ╰─ count [42] + │ ╰─ / [42] ├─ he - │ ├─ alth_check [*] - │ │ ├─ / [*] - │ │ │ ╰─ {checks} [*] - │ │ │ ├─ / [*] + │ ├─ alth_check [1641] + │ │ ├─ / [1641] + │ │ │ ╰─ {checks} [1641] + │ │ │ ├─ / [1641] │ │ │ ╰─ . - │ │ │ ╰─ {format} [*] - │ │ │ ╰─ / [*] + │ │ │ ╰─ {format} [1641] + │ │ │ ╰─ / [1641] │ │ ╰─ . - │ │ ╰─ {format} [*] - │ │ ╰─ / [*] - │ ╰─ lp [*] - │ ╰─ / [*] - │ ├─ instance_configuration [*] - │ │ ╰─ / [*] - │ ├─ shortcuts [*] - │ │ ╰─ / [*] + │ │ ╰─ {format} [1641] + │ │ ╰─ / [1641] + │ ╰─ lp [582] + │ ╰─ / [582] + │ ├─ instance_configuration [584] + │ │ ╰─ / [584] + │ ├─ shortcuts [583] + │ │ ╰─ / [583] │ ├─ d - │ │ ├─ ocs [*] - │ │ │ ╰─ / [*] + │ │ ├─ ocs [586] + │ │ │ ╰─ / [586] │ │ ╰─ rawers/ │ │ ├─ {*markdown_file} - │ │ │ ╰─ / [*] - │ │ ╰─ {*markdown_file} [*] + │ │ │ ╰─ / [585] + │ │ ╰─ {*markdown_file} [585] │ ├─ {*path} - │ │ ╰─ / [*] - │ ╰─ {*path} [*] - ├─ v2 [*] - │ ╰─ / [*] + │ │ ╰─ / [587] + │ ╰─ {*path} [587] + ├─ v2 [545] + │ ╰─ / [545] │ ╰─ {*group_id} │ ╰─ /dependency_proxy/containers/ │ ╰─ {*image} │ ╰─ / │ ├─ manifests/ │ │ ├─ {*tag} - │ │ │ ╰─ / [*] - │ │ │ ╰─ upload [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ authorize [*] - │ │ │ ╰─ / [*] - │ │ ╰─ {*tag} [*] + │ │ │ ╰─ / [546] + │ │ │ ╰─ upload [551] + │ │ │ ╰─ / [551] + │ │ │ ╰─ authorize [550] + │ │ │ ╰─ / [550] + │ │ ╰─ {*tag} [546] │ ╰─ blobs/ - │ ╰─ {sha} [*] - │ ╰─ / [*] - │ ╰─ upload [*] - │ ╰─ / [*] - │ ╰─ authorize [*] - │ ╰─ / [*] + │ ╰─ {sha} [547] + │ ╰─ / [547] + │ ╰─ upload [549] + │ ╰─ / [549] + │ ╰─ authorize [548] + │ ╰─ / [548] ├─ .well-known/ - │ ├─ change-password [*] - │ │ ╰─ / [*] - │ ├─ terraform.json [*] - │ │ ╰─ / [*] - │ ├─ security.txt [*] - │ │ ╰─ / [*] - │ ├─ webfinger [*] - │ │ ╰─ / [*] + │ ├─ change-password [1635] + │ │ ╰─ / [1635] + │ ├─ terraform.json [46] + │ │ ╰─ / [46] + │ ├─ security.txt [1636] + │ │ ╰─ / [1636] + │ ├─ webfinger [28] + │ │ ╰─ / [28] │ ╰─ o - │ ├─ auth-authorization-server [*] - │ │ ╰─ / [*] - │ ╰─ penid-configuration [*] - │ ╰─ / [*] + │ ├─ auth-authorization-server [27] + │ │ ╰─ / [27] + │ ╰─ penid-configuration [26] + │ ╰─ / [26] ├─ import/ - │ ├─ url/validate [*] - │ │ ╰─ / [*] - │ ├─ manifest [*] - │ │ ╰─ / [*] - │ │ ├─ realtime_changes [*] - │ │ │ ╰─ / [*] - │ │ ├─ status [*] - │ │ │ ╰─ / [*] - │ │ ├─ upload [*] - │ │ │ ╰─ / [*] - │ │ ╰─ new [*] - │ │ ╰─ / [*] - │ ├─ fogbugz [*] - │ │ ╰─ / [*] - │ │ ├─ realtime_changes [*] - │ │ │ ╰─ / [*] - │ │ ├─ callback [*] - │ │ │ ╰─ / [*] - │ │ ├─ user_map [*] - │ │ │ ╰─ / [*] - │ │ ├─ status [*] - │ │ │ ╰─ / [*] - │ │ ╰─ new [*] - │ │ ╰─ / [*] - │ ├─ history [*] - │ │ ╰─ / [*] + │ ├─ url/validate [590] + │ │ ╰─ / [590] + │ ├─ manifest [640] + │ │ ╰─ / [640] + │ │ ├─ realtime_changes [637] + │ │ │ ╰─ / [637] + │ │ ├─ status [636] + │ │ │ ╰─ / [636] + │ │ ├─ upload [638] + │ │ │ ╰─ / [638] + │ │ ╰─ new [639] + │ │ ╰─ / [639] + │ ├─ fogbugz [622] + │ │ ╰─ / [622] + │ │ ├─ realtime_changes [619] + │ │ │ ╰─ / [619] + │ │ ├─ callback [618] + │ │ │ ╰─ / [618] + │ │ ├─ user_map [620] + │ │ │ ╰─ / [620] + │ │ ├─ status [617] + │ │ │ ╰─ / [617] + │ │ ╰─ new [621] + │ │ ╰─ / [621] + │ ├─ history [589] + │ │ ╰─ / [589] │ ├─ source_users/ - │ │ ╰─ {id} [*] - │ │ ╰─ / [*] - │ │ ├─ decline [*] - │ │ │ ╰─ / [*] - │ │ ╰─ accept [*] - │ │ ╰─ / [*] + │ │ ╰─ {id} [641] + │ │ ╰─ / [641] + │ │ ├─ decline [643] + │ │ │ ╰─ / [643] + │ │ ╰─ accept [642] + │ │ ╰─ / [642] │ ├─ git │ │ ├─ lab_ - │ │ │ ├─ group [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ authorize [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ project [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ authorize [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ new [*] - │ │ │ ╰─ / [*] - │ │ ├─ hub [*] - │ │ │ ├─ _group/status [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ personal_access_token [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ realtime_changes [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ failures [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ details [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ status [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ new [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ group [627] + │ │ │ │ ╰─ / [627] + │ │ │ │ ╰─ authorize [626] + │ │ │ │ ╰─ / [626] + │ │ │ ╰─ project [623] + │ │ │ ╰─ / [623] + │ │ │ ├─ authorize [624] + │ │ │ │ ╰─ / [624] + │ │ │ ╰─ new [625] + │ │ │ ╰─ / [625] + │ │ ├─ hub [601] + │ │ │ ├─ _group/status [628] + │ │ │ │ ╰─ / [628] + │ │ │ ╰─ / [601] + │ │ │ ├─ personal_access_token [591] + │ │ │ │ ╰─ / [591] + │ │ │ ├─ realtime_changes [595] + │ │ │ │ ╰─ / [595] + │ │ │ ├─ failures [596] + │ │ │ │ ╰─ / [596] + │ │ │ ├─ details [593] + │ │ │ │ ╰─ / [593] + │ │ │ ├─ status [592] + │ │ │ │ ╰─ / [592] + │ │ │ ├─ new [600] + │ │ │ │ ╰─ / [600] │ │ │ ╰─ c - │ │ │ ├─ ounts [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ ounts [599] + │ │ │ │ ╰─ / [599] │ │ │ ╰─ a - │ │ │ ├─ llback [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ ncel [*] - │ │ │ ├─ / [*] - │ │ │ ╰─ _all [*] - │ │ │ ╰─ / [*] - │ │ ╰─ ea [*] - │ │ ╰─ / [*] - │ │ ├─ personal_access_token [*] - │ │ │ ╰─ / [*] - │ │ ├─ realtime_changes [*] - │ │ │ ╰─ / [*] - │ │ ├─ status [*] - │ │ │ ╰─ / [*] - │ │ ╰─ new [*] - │ │ ╰─ / [*] + │ │ │ ├─ llback [594] + │ │ │ │ ╰─ / [594] + │ │ │ ╰─ ncel [597] + │ │ │ ├─ / [597] + │ │ │ ╰─ _all [598] + │ │ │ ╰─ / [598] + │ │ ╰─ ea [606] + │ │ ╰─ / [606] + │ │ ├─ personal_access_token [602] + │ │ │ ╰─ / [602] + │ │ ├─ realtime_changes [604] + │ │ │ ╰─ / [604] + │ │ ├─ status [603] + │ │ │ ╰─ / [603] + │ │ ╰─ new [605] + │ │ ╰─ / [605] │ ╰─ b - │ ├─ ulk_imports [*] - │ │ ╰─ / [*] - │ │ ├─ realtime_changes [*] - │ │ │ ╰─ / [*] - │ │ ├─ configure [*] - │ │ │ ╰─ / [*] - │ │ ├─ history [*] - │ │ │ ╰─ / [*] - │ │ ├─ status [*] - │ │ │ ╰─ / [*] + │ ├─ ulk_imports [633] + │ │ ╰─ / [633] + │ │ ├─ realtime_changes [631] + │ │ │ ╰─ / [631] + │ │ ├─ configure [629] + │ │ │ ╰─ / [629] + │ │ ├─ history [632] + │ │ │ ╰─ / [632] + │ │ ├─ status [630] + │ │ │ ╰─ / [630] │ │ ╰─ {id} - │ │ ╰─ /history [*] - │ │ ╰─ / [*] + │ │ ╰─ /history [634] + │ │ ╰─ / [634] │ │ ╰─ {entity_id} - │ │ ╰─ /failures [*] - │ │ ╰─ / [*] - │ ╰─ itbucket [*] - │ ├─ _server [*] - │ │ ╰─ / [*] - │ │ ├─ realtime_changes [*] - │ │ │ ╰─ / [*] - │ │ ├─ status [*] - │ │ │ ╰─ / [*] - │ │ ├─ new [*] - │ │ │ ╰─ / [*] + │ │ ╰─ /failures [635] + │ │ ╰─ / [635] + │ ╰─ itbucket [610] + │ ├─ _server [616] + │ │ ╰─ / [616] + │ │ ├─ realtime_changes [614] + │ │ │ ╰─ / [614] + │ │ ├─ status [612] + │ │ │ ╰─ / [612] + │ │ ├─ new [615] + │ │ │ ╰─ / [615] │ │ ╰─ c - │ │ ├─ onfigure [*] - │ │ │ ╰─ / [*] - │ │ ╰─ allback [*] - │ │ ╰─ / [*] - │ ╰─ / [*] - │ ├─ realtime_changes [*] - │ │ ╰─ / [*] - │ ├─ callback [*] - │ │ ╰─ / [*] - │ ╰─ status [*] - │ ╰─ / [*] + │ │ ├─ onfigure [611] + │ │ │ ╰─ / [611] + │ │ ╰─ allback [613] + │ │ ╰─ / [613] + │ ╰─ / [610] + │ ├─ realtime_changes [609] + │ │ ╰─ / [609] + │ ├─ callback [608] + │ │ ╰─ / [608] + │ ╰─ status [607] + │ ╰─ / [607] ├─ oauth/ │ ├─ d - │ │ ├─ iscovery/keys [*] - │ │ │ ╰─ / [*] - │ │ ╰─ evice [*] - │ │ ╰─ / [*] - │ │ ╰─ confirm [*] - │ │ ╰─ / [*] - │ ├─ introspect [*] - │ │ ╰─ / [*] - │ ├─ userinfo [*] - │ │ ╰─ / [*] - │ ├─ revoke [*] - │ │ ╰─ / [*] - │ ├─ token [*] - │ │ ╰─ / [*] - │ │ ╰─ info [*] - │ │ ╰─ / [*] + │ │ ├─ iscovery/keys [25] + │ │ │ ╰─ / [25] + │ │ ╰─ evice [30] + │ │ ╰─ / [30] + │ │ ╰─ confirm [580] + │ │ ╰─ / [580] + │ ├─ introspect [12] + │ │ ╰─ / [12] + │ ├─ userinfo [24] + │ │ ╰─ / [24] + │ ├─ revoke [11] + │ │ ╰─ / [11] + │ ├─ token [10] + │ │ ╰─ / [10] + │ │ ╰─ info [19] + │ │ ╰─ / [19] │ ├─ geo/ - │ │ ├─ callback [*] - │ │ │ ╰─ / [*] - │ │ ├─ logout [*] - │ │ │ ╰─ / [*] - │ │ ╰─ auth [*] - │ │ ╰─ / [*] + │ │ ├─ callback [22] + │ │ │ ╰─ / [22] + │ │ ├─ logout [23] + │ │ │ ╰─ / [23] + │ │ ╰─ auth [21] + │ │ ╰─ / [21] │ ╰─ a - │ ├─ pplications [*] - │ │ ╰─ / [*] - │ │ ├─ new [*] - │ │ │ ╰─ / [*] - │ │ ╰─ {id} [*] - │ │ ╰─ / [*] - │ │ ├─ renew [*] - │ │ │ ╰─ / [*] - │ │ ╰─ edit [*] - │ │ ╰─ / [*] - │ ╰─ uthorize [*] - │ ├─ / [*] - │ │ ╰─ native [*] - │ │ ╰─ / [*] - │ ├─ d_applications [*] - │ │ ╰─ / [*] - │ │ ╰─ {id} [*] - │ │ ╰─ / [*] - │ ╰─ _device [*] - │ ╰─ / [*] + │ ├─ pplications [13] + │ │ ╰─ / [13] + │ │ ├─ new [14] + │ │ │ ╰─ / [14] + │ │ ╰─ {id} [16] + │ │ ╰─ / [16] + │ │ ├─ renew [20] + │ │ │ ╰─ / [20] + │ │ ╰─ edit [15] + │ │ ╰─ / [15] + │ ╰─ uthorize [9] + │ ├─ / [9] + │ │ ╰─ native [8] + │ │ ╰─ / [8] + │ ├─ d_applications [17] + │ │ ╰─ / [17] + │ │ ╰─ {id} [18] + │ │ ╰─ / [18] + │ ╰─ _device [29] + │ ╰─ / [29] ├─ rails/ - │ ├─ features [*] + │ ├─ features [1658] │ │ ╰─ / - │ │ ├─ definitions [*] - │ │ │ ╰─ / [*] - │ │ ╰─ {id} [*] - │ │ ╰─ / [*] - │ ├─ mailers [*] - │ │ ╰─ / [*] - │ │ ╰─ {path} [*] - │ │ ╰─ / [*] - │ ├─ info [*] - │ │ ╰─ / [*] - │ │ ├─ properties [*] - │ │ │ ╰─ / [*] - │ │ ╰─ routes [*] - │ │ ╰─ / [*] + │ │ ├─ definitions [1657] + │ │ │ ╰─ / [1657] + │ │ ╰─ {id} [1659] + │ │ ╰─ / [1659] + │ ├─ mailers [3] + │ │ ╰─ / [3] + │ │ ╰─ {path} [4] + │ │ ╰─ / [4] + │ ├─ info [7] + │ │ ╰─ / [7] + │ │ ├─ properties [5] + │ │ │ ╰─ / [5] + │ │ ╰─ routes [6] + │ │ ╰─ / [6] │ ╰─ l - │ ├─ ookbook [*] + │ ├─ ookbook [1648] │ │ ╰─ / - │ │ ├─ cable [*] - │ │ │ ╰─ / [*] - │ │ ├─ embed [*] - │ │ │ ╰─ / [*] + │ │ ├─ cable [1647] + │ │ │ ╰─ / [1647] + │ │ ├─ embed [1654] + │ │ │ ╰─ / [1654] │ │ │ ├─ {*path} - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {*path} [*] + │ │ │ │ ╰─ / [1655] + │ │ │ ╰─ {*path} [1655] │ │ ├─ inspect/ │ │ │ ├─ {*path} - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {*path} [*] + │ │ │ │ ╰─ / [1653] + │ │ │ ╰─ {*path} [1653] │ │ ├─ p │ │ │ ├─ review - │ │ │ │ ├─ s [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ s [1651] + │ │ │ │ │ ╰─ / [1651] │ │ │ │ ╰─ / │ │ │ │ ├─ {*path} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*path} [*] - │ │ │ ╰─ ages [*] - │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ / [1652] + │ │ │ │ ╰─ {*path} [1652] + │ │ │ ╰─ ages [1649] + │ │ │ ╰─ / [1649] │ │ │ ├─ {*path} - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {*path} [*] + │ │ │ │ ╰─ / [1650] + │ │ │ ╰─ {*path} [1650] │ │ ├─ {*path} - │ │ │ ╰─ / [*] - │ │ ╰─ {*path} [*] - │ ╰─ etter_opener [*] - │ ╰─ / [*] - │ ├─ clear [*] - │ │ ╰─ / [*] - │ ╰─ {id} [*] - │ ╰─ / [*] - │ ├─ delete [*] - │ │ ╰─ / [*] + │ │ │ ╰─ / [1656] + │ │ ╰─ {*path} [1656] + │ ╰─ etter_opener [1642] + │ ╰─ / [1642] + │ ├─ clear [1643] + │ │ ╰─ / [1643] + │ ╰─ {id} [1644] + │ ╰─ / [1644] + │ ├─ delete [1645] + │ │ ╰─ / [1645] │ ├─ attachments/ - │ │ ╰─ {file} [*] - │ │ ╰─ / [*] - │ ╰─ {style} [*] - │ ╰─ / [*] + │ │ ╰─ {file} [1646] + │ │ ╰─ / [1646] + │ ╰─ {style} [1644] + │ ╰─ / [1644] ├─ -/ │ ├─ g - │ │ ├─ oogle_api/auth/callback [*] - │ │ │ ╰─ / [*] - │ │ ╰─ raphql-explorer [*] - │ │ ╰─ / [*] + │ │ ├─ oogle_api/auth/callback [588] + │ │ │ ╰─ / [588] + │ │ ╰─ raphql-explorer [1661] + │ │ ╰─ / [1661] │ ├─ ex - │ │ ├─ ternal_redirect [*] - │ │ │ ╰─ / [*] + │ │ ├─ ternal_redirect [258] + │ │ │ ╰─ / [258] │ │ ╰─ periment/ - │ │ ╰─ {id} [*] - │ │ ╰─ / [*] - │ ├─ kubernetes [*] - │ │ ╰─ / [*] - │ │ ╰─ {agent_id} [*] - │ │ ╰─ / [*] + │ │ ╰─ {id} [1662] + │ │ ╰─ / [1662] + │ ├─ kubernetes [64] + │ │ ╰─ / [64] + │ │ ╰─ {agent_id} [65] + │ │ ╰─ / [65] │ │ ├─ {*vueroute} - │ │ │ ╰─ / [*] - │ │ ╰─ {*vueroute} [*] - │ ├─ whats_new [*] - │ │ ╰─ / [*] - │ ├─ liveness [*] - │ │ ╰─ / [*] + │ │ │ ╰─ / [65] + │ │ ╰─ {*vueroute} [65] + │ ├─ whats_new [61] + │ │ ╰─ / [61] + │ ├─ liveness [66] + │ │ ╰─ / [66] │ ├─ user │ │ ├─ _settings/ - │ │ │ ├─ identities [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ new [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ gpg_keys [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ revoke [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ ssh_keys [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ revoke [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ identities [241] + │ │ │ │ ╰─ / [241] + │ │ │ │ ╰─ new [240] + │ │ │ │ ╰─ / [240] + │ │ │ ├─ gpg_keys [249] + │ │ │ │ ╰─ / [249] + │ │ │ │ ╰─ {id} [250] + │ │ │ │ ╰─ / [250] + │ │ │ │ ╰─ revoke [248] + │ │ │ │ ╰─ / [248] + │ │ │ ├─ ssh_keys [252] + │ │ │ │ ╰─ / [252] + │ │ │ │ ╰─ {id} [253] + │ │ │ │ ╰─ / [253] + │ │ │ │ ╰─ revoke [251] + │ │ │ │ ╰─ / [251] │ │ │ ├─ a - │ │ │ │ ├─ ctive_sessions [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ saml [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ uthentication_log [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ pplications [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ ctive_sessions [237] + │ │ │ │ │ ╰─ / [237] + │ │ │ │ │ ├─ saml [234] + │ │ │ │ │ │ ╰─ / [234] + │ │ │ │ │ ╰─ {id} [238] + │ │ │ │ │ ╰─ / [238] + │ │ │ │ ├─ uthentication_log [235] + │ │ │ │ │ ╰─ / [235] + │ │ │ │ ╰─ pplications [236] + │ │ │ │ ╰─ / [236] │ │ │ ╰─ p - │ │ │ ├─ assword [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ reset [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ edit [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ new [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ rofile [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ ersonal_access_tokens [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ assword [245] + │ │ │ │ ╰─ / [245] + │ │ │ │ ├─ reset [242] + │ │ │ │ │ ╰─ / [242] + │ │ │ │ ├─ edit [244] + │ │ │ │ │ ╰─ / [244] + │ │ │ │ ╰─ new [243] + │ │ │ │ ╰─ / [243] + │ │ │ ├─ rofile [239] + │ │ │ │ ╰─ / [239] + │ │ │ ╰─ ersonal_access_tokens [247] + │ │ │ ╰─ / [247] │ │ │ ╰─ {id} - │ │ │ ╰─ /revoke [*] - │ │ │ ╰─ / [*] + │ │ │ ╰─ /revoke [246] + │ │ │ ╰─ / [246] │ │ ╰─ s/ - │ │ ├─ broadcast_message_dismissals [*] - │ │ │ ╰─ / [*] + │ │ ├─ broadcast_message_dismissals [951] + │ │ │ ╰─ / [951] │ │ ├─ p - │ │ │ ├─ roject_callouts [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ ins [*] - │ │ │ ╰─ / [*] - │ │ ├─ group_callouts [*] - │ │ │ ╰─ / [*] - │ │ ├─ callouts [*] - │ │ │ ╰─ / [*] - │ │ ╰─ terms [*] - │ │ ╰─ / [*] + │ │ │ ├─ roject_callouts [950] + │ │ │ │ ╰─ / [950] + │ │ │ ╰─ ins [952] + │ │ │ ╰─ / [952] + │ │ ├─ group_callouts [949] + │ │ │ ╰─ / [949] + │ │ ├─ callouts [948] + │ │ │ ╰─ / [948] + │ │ ╰─ terms [947] + │ │ ╰─ / [947] │ │ ╰─ {id} │ │ ╰─ / - │ │ ├─ decline [*] - │ │ │ ╰─ / [*] - │ │ ╰─ accept [*] - │ │ ╰─ / [*] + │ │ ├─ decline [946] + │ │ │ ╰─ / [946] + │ │ ╰─ accept [945] + │ │ ╰─ / [945] │ ├─ a - │ │ ├─ buse_reports [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ add_category [*] - │ │ │ ╰─ / [*] - │ │ ├─ cme-challenge [*] - │ │ │ ╰─ / [*] + │ │ ├─ buse_reports [185] + │ │ │ ╰─ / [185] + │ │ │ ╰─ add_category [184] + │ │ │ ╰─ / [184] + │ │ ├─ cme-challenge [71] + │ │ │ ╰─ / [71] │ │ ╰─ utocomplete/ - │ │ ├─ deploy_keys_with_owners [*] - │ │ │ ╰─ / [*] - │ │ ├─ namespace_routes [*] - │ │ │ ╰─ / [*] - │ │ ├─ group_subgroups [*] - │ │ │ ╰─ / [*] - │ │ ├─ award_emojis [*] - │ │ │ ╰─ / [*] - │ │ ├─ users [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ {id} [*] - │ │ │ ╰─ / [*] + │ │ ├─ deploy_keys_with_owners [53] + │ │ │ ╰─ / [53] + │ │ ├─ namespace_routes [56] + │ │ │ ╰─ / [56] + │ │ ├─ group_subgroups [57] + │ │ │ ╰─ / [57] + │ │ ├─ award_emojis [50] + │ │ │ ╰─ / [50] + │ │ ├─ users [47] + │ │ │ ╰─ / [47] + │ │ │ ╰─ {id} [48] + │ │ │ ╰─ / [48] │ │ ├─ merge_request_ - │ │ │ ├─ source_branches [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ target_branches [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ source_branches [52] + │ │ │ │ ╰─ / [52] + │ │ │ ╰─ target_branches [51] + │ │ │ ╰─ / [51] │ │ ╰─ project │ │ ├─ _ - │ │ │ ├─ groups [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ routes [*] - │ │ │ ╰─ / [*] - │ │ ╰─ s [*] - │ │ ╰─ / [*] + │ │ │ ├─ groups [54] + │ │ │ │ ╰─ / [54] + │ │ │ ╰─ routes [55] + │ │ │ ╰─ / [55] + │ │ ╰─ s [49] + │ │ ╰─ / [49] │ ├─ c - │ │ ├─ ustomers_dot/proxy/graphql [*] - │ │ │ ╰─ / [*] + │ │ ├─ ustomers_dot/proxy/graphql [579] + │ │ │ ╰─ / [579] │ │ ├─ haos/ - │ │ │ ├─ cpu_spin [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ db_spin [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ leakmem [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ sleep [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ kill [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ quit [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ gc [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ cpu_spin [174] + │ │ │ │ ╰─ / [174] + │ │ │ ├─ db_spin [175] + │ │ │ │ ╰─ / [175] + │ │ │ ├─ leakmem [173] + │ │ │ │ ╰─ / [173] + │ │ │ ├─ sleep [176] + │ │ │ │ ╰─ / [176] + │ │ │ ├─ kill [177] + │ │ │ │ ╰─ / [177] + │ │ │ ├─ quit [178] + │ │ │ │ ╰─ / [178] + │ │ │ ╰─ gc [179] + │ │ │ ╰─ / [179] │ │ ╰─ ountr - │ │ ├─ y_states [*] - │ │ │ ╰─ / [*] - │ │ ╰─ ies [*] - │ │ ╰─ / [*] + │ │ ├─ y_states [135] + │ │ │ ╰─ / [135] + │ │ ╰─ ies [134] + │ │ ╰─ / [134] │ ├─ i - │ │ ├─ de [*] - │ │ │ ├─ ntity_verification [*] - │ │ │ │ ╰─ / [*] + │ │ ├─ de [72] + │ │ │ ├─ ntity_verification [919] + │ │ │ │ ╰─ / [919] │ │ │ │ ├─ s - │ │ │ │ │ ├─ end_phone_verification_code [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ uccess [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ toggle_phone_exemption [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ end_phone_verification_code [913] + │ │ │ │ │ │ ╰─ / [913] + │ │ │ │ │ ╰─ uccess [918] + │ │ │ │ │ ╰─ / [918] + │ │ │ │ ├─ toggle_phone_exemption [915] + │ │ │ │ │ ╰─ / [915] │ │ │ │ ╰─ verif │ │ │ │ ├─ y_ - │ │ │ │ │ ├─ phone_verification_code [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ credit_card [*] - │ │ │ │ │ ├─ / [*] - │ │ │ │ │ ╰─ _captcha [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ ication_state [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ reset_oauth_application_settings [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ oauth_redirect [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ project [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ {project_id} [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ blob [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ phone_verification_code [914] + │ │ │ │ │ │ ╰─ / [914] + │ │ │ │ │ ╰─ credit_card [916] + │ │ │ │ │ ├─ / [916] + │ │ │ │ │ ╰─ _captcha [917] + │ │ │ │ │ ╰─ / [917] + │ │ │ │ ╰─ ication_state [912] + │ │ │ │ ╰─ / [912] + │ │ │ ╰─ / [72] + │ │ │ ├─ reset_oauth_application_settings [89] + │ │ │ │ ╰─ / [89] + │ │ │ ├─ oauth_redirect [74] + │ │ │ │ ╰─ / [74] + │ │ │ ╰─ project [73] + │ │ │ ╰─ / [73] + │ │ │ ╰─ {project_id} [88] + │ │ │ ╰─ / [88] + │ │ │ ├─ blob [83] + │ │ │ │ ╰─ / [83] │ │ │ │ ├─ {*branch} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ - [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ / [86] + │ │ │ │ │ ╰─ - [85] + │ │ │ │ │ ╰─ / [85] │ │ │ │ │ ├─ {*path} - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {*path} [*] - │ │ │ │ ╰─ {*branch} [*] - │ │ │ ├─ edit [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ╰─ / [84] + │ │ │ │ │ ╰─ {*path} [84] + │ │ │ │ ╰─ {*branch} [86] + │ │ │ ├─ edit [75] + │ │ │ │ ╰─ / [75] │ │ │ │ ├─ {*branch} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ - [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ / [78] + │ │ │ │ │ ╰─ - [77] + │ │ │ │ │ ╰─ / [77] │ │ │ │ │ ├─ {*path} - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {*path} [*] - │ │ │ │ ╰─ {*branch} [*] - │ │ │ ├─ tree [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ╰─ / [76] + │ │ │ │ │ ╰─ {*path} [76] + │ │ │ │ ╰─ {*branch} [78] + │ │ │ ├─ tree [79] + │ │ │ │ ╰─ / [79] │ │ │ │ ├─ {*branch} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ - [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ / [82] + │ │ │ │ │ ╰─ - [81] + │ │ │ │ │ ╰─ / [81] │ │ │ │ │ ├─ {*path} - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {*path} [*] - │ │ │ │ ╰─ {*branch} [*] + │ │ │ │ │ │ ╰─ / [80] + │ │ │ │ │ ╰─ {*path} [80] + │ │ │ │ ╰─ {*branch} [82] │ │ │ ╰─ merge_requests/ - │ │ │ ╰─ {merge_request_id} [*] - │ │ │ ╰─ / [*] + │ │ │ ╰─ {merge_request_id} [87] + │ │ │ ╰─ / [87] │ │ ╰─ nvites/ - │ │ ╰─ {id} [*] - │ │ ╰─ / [*] - │ │ ├─ decline [*] - │ │ │ ╰─ / [*] - │ │ ╰─ accept [*] - │ │ ╰─ / [*] + │ │ ╰─ {id} [182] + │ │ ╰─ / [182] + │ │ ├─ decline [181] + │ │ │ ╰─ / [181] + │ │ ╰─ accept [180] + │ │ ╰─ / [180] │ ├─ j │ │ ├─ ira - │ │ │ ├─ _connect [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ workspaces/search [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ ├─ _connect [92] + │ │ │ │ ╰─ / [92] + │ │ │ │ ├─ workspaces/search [99] + │ │ │ │ │ ╰─ / [99] │ │ │ │ ├─ oauth_ - │ │ │ │ │ ├─ application_id [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ callbacks [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ app_descriptor [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ installations [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ subscriptions [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ application_id [31] + │ │ │ │ │ │ ╰─ / [31] + │ │ │ │ │ ╰─ callbacks [103] + │ │ │ │ │ ╰─ / [103] + │ │ │ │ ├─ app_descriptor [93] + │ │ │ │ │ ╰─ / [93] + │ │ │ │ ├─ installations [102] + │ │ │ │ │ ╰─ / [102] + │ │ │ │ ├─ subscriptions [32] + │ │ │ │ │ ╰─ / [32] + │ │ │ │ │ ╰─ {id} [33] + │ │ │ │ │ ╰─ / [33] │ │ │ │ ├─ repositories/ - │ │ │ │ │ ├─ associate [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ search [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ associate [101] + │ │ │ │ │ │ ╰─ / [101] + │ │ │ │ │ ╰─ search [100] + │ │ │ │ │ ╰─ / [100] │ │ │ │ ├─ public_keys/ - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ {id} [98] + │ │ │ │ │ ╰─ / [98] │ │ │ │ ├─ branches/ - │ │ │ │ │ ├─ route [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ new [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ route [96] + │ │ │ │ │ │ ╰─ / [96] + │ │ │ │ │ ╰─ new [97] + │ │ │ │ │ ╰─ / [97] │ │ │ │ ╰─ events/ - │ │ │ │ ├─ uninstalled [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ installed [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ uninstalled [95] + │ │ │ │ │ ╰─ / [95] + │ │ │ │ ╰─ installed [94] + │ │ │ │ ╰─ / [94] │ │ │ ╰─ / │ │ │ ╰─ {*namespace_id} │ │ │ ╰─ / │ │ │ ╰─ {project_id} │ │ │ ╰─ /commit/ - │ │ │ ╰─ {id} [*] - │ │ │ ├─ / [*] + │ │ │ ╰─ {id} [1632] + │ │ │ ├─ / [1632] │ │ │ ╰─ . - │ │ │ ╰─ {format} [*] - │ │ │ ╰─ / [*] - │ │ ╰─ wks [*] - │ │ ╰─ / [*] + │ │ │ ╰─ {format} [1632] + │ │ │ ╰─ / [1632] + │ │ ╰─ wks [186] + │ │ ╰─ / [186] │ ├─ m │ │ ├─ a - │ │ │ ├─ ilgun/webhooks [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ nifest [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ ilgun/webhooks [254] + │ │ │ │ ╰─ / [254] + │ │ │ ╰─ nifest [63] + │ │ │ ╰─ / [63] │ │ ╰─ e - │ │ ├─ mbers/mailgun/permanent_failures [*] - │ │ │ ╰─ / [*] - │ │ ╰─ trics [*] - │ │ ╰─ / [*] - │ │ ╰─ system [*] - │ │ ╰─ / [*] + │ │ ├─ mbers/mailgun/permanent_failures [255] + │ │ │ ╰─ / [255] + │ │ ╰─ trics [68] + │ │ ╰─ / [68] + │ │ ╰─ system [69] + │ │ ╰─ / [69] │ ├─ o - │ │ ├─ rganizations [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ preview_markdown [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ new [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {organization_path} [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ settings/general [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ activity [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ groups [*] - │ │ │ │ ├─ / [*] - │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ ├─ rganizations [113] + │ │ │ ╰─ / [113] + │ │ │ ├─ preview_markdown [104] + │ │ │ │ ╰─ / [104] + │ │ │ ├─ new [114] + │ │ │ │ ╰─ / [114] + │ │ │ ╰─ {organization_path} [115] + │ │ │ ╰─ / [115] + │ │ │ ├─ settings/general [108] + │ │ │ │ ╰─ / [108] + │ │ │ ├─ activity [105] + │ │ │ │ ╰─ / [105] + │ │ │ ├─ groups [110] + │ │ │ │ ├─ / [110] + │ │ │ │ │ ├─ new [109] + │ │ │ │ │ │ ╰─ / [109] │ │ │ │ │ ╰─ {*id} - │ │ │ │ │ ╰─ /edit [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ _and_projects [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ users [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ /edit [111] + │ │ │ │ │ ╰─ / [111] + │ │ │ │ ╰─ _and_projects [106] + │ │ │ │ ╰─ / [106] + │ │ │ ├─ users [107] + │ │ │ │ ╰─ / [107] │ │ │ ╰─ projects/ │ │ │ ╰─ {*namespace_id} │ │ │ ╰─ / │ │ │ ╰─ {id} - │ │ │ ╰─ /edit [*] - │ │ │ ╰─ / [*] - │ │ ├─ perations [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ environments [*] - │ │ │ ╰─ / [*] - │ │ ╰─ ffline [*] - │ │ ╰─ / [*] + │ │ │ ╰─ /edit [112] + │ │ │ ╰─ / [112] + │ │ ├─ perations [90] + │ │ │ ╰─ / [90] + │ │ │ ╰─ environments [91] + │ │ │ ╰─ / [91] + │ │ ╰─ ffline [62] + │ │ ╰─ / [62] │ ├─ p - │ │ ├─ hone_verification/telesign_callback [*] - │ │ │ ╰─ / [*] - │ │ ├─ eek/results [*] - │ │ │ ╰─ / [*] + │ │ ├─ hone_verification/telesign_callback [154] + │ │ │ ╰─ / [154] + │ │ ├─ eek/results [1660] + │ │ │ ╰─ / [1660] │ │ ├─ ush_from_secondary/ │ │ │ ╰─ {geo_node_id} │ │ │ ╰─ / │ │ │ ├─ {*repository_path} - │ │ │ │ ╰─ / [*] + │ │ │ │ ╰─ / [172] │ │ │ │ ├─ info/ │ │ │ │ │ ├─ lfs/ - │ │ │ │ │ │ ├─ objects [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ├─ batch [*] - │ │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ objects [161] + │ │ │ │ │ │ │ ╰─ / [161] + │ │ │ │ │ │ │ ├─ batch [160] + │ │ │ │ │ │ │ │ ╰─ / [160] │ │ │ │ │ │ │ ├─ {*oid} - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ {*oid} [*] - │ │ │ │ │ │ ╰─ locks [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ verify [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ unlock [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ edit [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ refs [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ │ ╰─ / [162] + │ │ │ │ │ │ │ ╰─ {*oid} [162] + │ │ │ │ │ │ ╰─ locks [165] + │ │ │ │ │ │ ╰─ / [165] + │ │ │ │ │ │ ├─ verify [164] + │ │ │ │ │ │ │ ╰─ / [164] + │ │ │ │ │ │ ├─ new [166] + │ │ │ │ │ │ │ ╰─ / [166] + │ │ │ │ │ │ ╰─ {id} [168] + │ │ │ │ │ │ ╰─ / [168] + │ │ │ │ │ │ ├─ unlock [163] + │ │ │ │ │ │ │ ╰─ / [163] + │ │ │ │ │ │ ╰─ edit [167] + │ │ │ │ │ │ ╰─ / [167] + │ │ │ │ │ ╰─ refs [155] + │ │ │ │ │ ╰─ / [155] │ │ │ │ ├─ ssh- - │ │ │ │ │ ├─ receive-pack [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ upload-pack [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ receive-pack [159] + │ │ │ │ │ │ ╰─ / [159] + │ │ │ │ │ ╰─ upload-pack [158] + │ │ │ │ │ ╰─ / [158] │ │ │ │ ╰─ git │ │ │ │ ├─ lab-lfs/objects/ │ │ │ │ │ ├─ {*oid} - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {size} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ authorize [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {*oid} [*] + │ │ │ │ │ │ ╰─ / [169] + │ │ │ │ │ │ ╰─ {size} [171] + │ │ │ │ │ │ ╰─ / [171] + │ │ │ │ │ │ ╰─ authorize [170] + │ │ │ │ │ │ ╰─ / [170] + │ │ │ │ │ ╰─ {*oid} [169] │ │ │ │ ╰─ - - │ │ │ │ ├─ receive-pack [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ upload-pack [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {*repository_path} [*] + │ │ │ │ ├─ receive-pack [157] + │ │ │ │ │ ╰─ / [157] + │ │ │ │ ╰─ upload-pack [156] + │ │ │ │ ╰─ / [156] + │ │ │ ╰─ {*repository_path} [172] │ │ ╰─ rofile/ - │ │ ├─ join_early_access_program [*] - │ │ │ ╰─ / [*] - │ │ ├─ two_factor_auth [*] - │ │ │ ╰─ / [*] + │ │ ├─ join_early_access_program [211] + │ │ │ ╰─ / [211] + │ │ ├─ two_factor_auth [232] + │ │ │ ╰─ / [232] │ │ │ ├─ c - │ │ │ │ ├─ reate_webauthn [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ odes [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ skip [*] - │ │ │ ╰─ / [*] - │ │ ├─ notifications [*] - │ │ │ ╰─ / [*] - │ │ ├─ preferences [*] - │ │ │ ╰─ / [*] - │ │ ├─ billings [*] - │ │ │ ╰─ / [*] - │ │ ├─ emails [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ confirmation [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ new [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {id} [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ resend_confirmation_instructions [*] - │ │ │ ╰─ / [*] + │ │ │ │ ├─ reate_webauthn [231] + │ │ │ │ │ ╰─ / [231] + │ │ │ │ ╰─ odes [229] + │ │ │ │ ╰─ / [229] + │ │ │ ╰─ skip [230] + │ │ │ ╰─ / [230] + │ │ ├─ notifications [215] + │ │ │ ╰─ / [215] + │ │ ├─ preferences [218] + │ │ │ ╰─ / [218] + │ │ ├─ billings [202] + │ │ │ ╰─ / [202] + │ │ ├─ emails [222] + │ │ │ ╰─ / [222] + │ │ │ ├─ confirmation [204] + │ │ │ │ ╰─ / [204] + │ │ │ │ ╰─ new [203] + │ │ │ │ ╰─ / [203] + │ │ │ ╰─ {id} [223] + │ │ │ ╰─ / [223] + │ │ │ ╰─ resend_confirmation_instructions [221] + │ │ │ ╰─ / [221] │ │ ├─ webauthn_registrations/ - │ │ │ ╰─ {id} [*] - │ │ │ ╰─ / [*] + │ │ │ ╰─ {id} [233] + │ │ │ ╰─ / [233] │ │ ├─ groups/ │ │ │ ╰─ {*id} - │ │ │ ╰─ /notifications [*] - │ │ │ ├─ / [*] + │ │ │ ╰─ /notifications [214] + │ │ │ ├─ / [214] │ │ │ ╰─ . - │ │ │ ╰─ {format} [*] - │ │ │ ╰─ / [*] + │ │ │ ╰─ {format} [214] + │ │ │ ╰─ / [214] │ │ ├─ reset_ - │ │ │ ├─ incoming_email_token [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ static_object_token [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ feed_token [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ incoming_email_token [207] + │ │ │ │ ╰─ / [207] + │ │ │ ├─ static_object_token [209] + │ │ │ │ ╰─ / [209] + │ │ │ ╰─ feed_token [208] + │ │ │ ╰─ / [208] │ │ ├─ slack/ - │ │ │ ├─ slack_link [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ edit [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ slack_link [216] + │ │ │ │ ╰─ / [216] + │ │ │ ╰─ edit [217] + │ │ │ ╰─ / [217] │ │ ├─ a - │ │ │ ├─ pplications [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ udit_log [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ ccount [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ unlink [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ vatar [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ pplications [206] + │ │ │ │ ╰─ / [206] + │ │ │ ├─ udit_log [205] + │ │ │ │ ╰─ / [205] + │ │ │ ├─ ccount [213] + │ │ │ │ ╰─ / [213] + │ │ │ │ ╰─ unlink [212] + │ │ │ │ ╰─ / [212] + │ │ │ ╰─ vatar [228] + │ │ │ ╰─ / [228] │ │ ├─ c - │ │ │ ├─ hat_names [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ deny [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ new [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ omment_templates [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ {id} [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ hat_names [225] + │ │ │ │ ╰─ / [225] + │ │ │ │ ├─ deny [224] + │ │ │ │ │ ╰─ / [224] + │ │ │ │ ├─ new [226] + │ │ │ │ │ ╰─ / [226] + │ │ │ │ ╰─ {id} [227] + │ │ │ │ ╰─ / [227] + │ │ │ ╰─ omment_templates [219] + │ │ │ ╰─ / [219] + │ │ │ ╰─ {id} [220] + │ │ │ ╰─ / [220] │ │ ╰─ u - │ │ ├─ pdate_username [*] - │ │ │ ╰─ / [*] - │ │ ╰─ sage_quotas [*] - │ │ ╰─ / [*] + │ │ ├─ pdate_username [210] + │ │ │ ╰─ / [210] + │ │ ╰─ sage_quotas [201] + │ │ ╰─ / [201] │ ├─ r - │ │ ├─ unner_setup/platforms [*] - │ │ │ ╰─ / [*] + │ │ ├─ unner_setup/platforms [70] + │ │ │ ╰─ / [70] │ │ ╰─ e - │ │ ├─ adiness [*] - │ │ │ ╰─ / [*] - │ │ ╰─ mote_development/workspaces [*] - │ │ ├─ / [*] - │ │ │ ├─ new [*] - │ │ │ │ ╰─ / [*] + │ │ ├─ adiness [67] + │ │ │ ╰─ / [67] + │ │ ╰─ mote_development/workspaces [118] + │ │ ├─ / [118] + │ │ │ ├─ new [119] + │ │ │ │ ╰─ / [119] │ │ │ ├─ {workspace_id} - │ │ │ │ ╰─ /workspaces [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ new [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ edit [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ╰─ /workspaces [116] + │ │ │ │ ╰─ / [116] + │ │ │ │ ╰─ new [117] + │ │ │ │ ╰─ / [117] + │ │ │ ├─ {id} [121] + │ │ │ │ ╰─ / [121] + │ │ │ │ ╰─ edit [120] + │ │ │ │ ╰─ / [120] │ │ │ ├─ {*vueroute} - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ new [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ╰─ / [118] + │ │ │ │ ├─ new [119] + │ │ │ │ │ ╰─ / [119] │ │ │ │ ├─ {workspace_id} - │ │ │ │ │ ╰─ /workspaces [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ new [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ edit [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {*vueroute} [*] - │ │ ╰─ _feature_flag [*] - │ │ ╰─ / [*] + │ │ │ │ │ ╰─ /workspaces [116] + │ │ │ │ │ ╰─ / [116] + │ │ │ │ │ ╰─ new [117] + │ │ │ │ │ ╰─ / [117] + │ │ │ │ ╰─ {id} [121] + │ │ │ │ ╰─ / [121] + │ │ │ │ ╰─ edit [120] + │ │ │ │ ╰─ / [120] + │ │ │ ╰─ {*vueroute} [118] + │ │ ╰─ _feature_flag [122] + │ │ ╰─ / [122] │ ├─ s - │ │ ├─ ubscriptions [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ validate_payment_method [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ hand_raise_leads [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ groups [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ new [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ edit [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ new [*] - │ │ │ │ ╰─ / [*] + │ │ ├─ ubscriptions [147] + │ │ │ ╰─ / [147] + │ │ │ ├─ validate_payment_method [140] + │ │ │ │ ╰─ / [140] + │ │ │ ├─ hand_raise_leads [145] + │ │ │ │ ╰─ / [145] + │ │ │ ├─ groups [141] + │ │ │ │ ╰─ / [141] + │ │ │ │ ├─ new [142] + │ │ │ │ │ ╰─ / [142] + │ │ │ │ ╰─ {id} [144] + │ │ │ │ ╰─ / [144] + │ │ │ │ ╰─ edit [143] + │ │ │ │ ╰─ / [143] + │ │ │ ├─ new [146] + │ │ │ │ ╰─ / [146] │ │ │ ├─ payment_ - │ │ │ │ ├─ method [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ form [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ method [139] + │ │ │ │ │ ╰─ / [139] + │ │ │ │ ╰─ form [138] + │ │ │ │ ╰─ / [138] │ │ │ ╰─ buy_ - │ │ │ ├─ minutes [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ storage [*] - │ │ │ ╰─ / [*] - │ │ ├─ nippets [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ preview_markdown [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ new [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ minutes [136] + │ │ │ │ ╰─ / [136] + │ │ │ ╰─ storage [137] + │ │ │ ╰─ / [137] + │ │ ├─ nippets [195] + │ │ │ ╰─ / [195] + │ │ │ ├─ preview_markdown [189] + │ │ │ │ ╰─ / [189] + │ │ │ ├─ new [196] + │ │ │ │ ╰─ / [196] │ │ │ ├─ {snippet_id} │ │ │ │ ╰─ / - │ │ │ │ ├─ notes [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ toggle_award_emoji [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ delete_attachment [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ notes [192] + │ │ │ │ │ ╰─ / [192] + │ │ │ │ │ ╰─ {id} [193] + │ │ │ │ │ ╰─ / [193] + │ │ │ │ │ ├─ toggle_award_emoji [191] + │ │ │ │ │ │ ╰─ / [191] + │ │ │ │ │ ╰─ delete_attachment [190] + │ │ │ │ │ ╰─ / [190] │ │ │ │ ╰─ raw/ │ │ │ │ ╰─ {ref} │ │ │ │ ╰─ / │ │ │ │ ├─ {*path} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*path} [*] - │ │ │ ╰─ {id} [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ toggle_award_emoji [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ mark_as_spam [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ edit [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ raw [*] - │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ / [199] + │ │ │ │ ╰─ {*path} [199] + │ │ │ ╰─ {id} [198] + │ │ │ ╰─ / [198] + │ │ │ ├─ toggle_award_emoji [194] + │ │ │ │ ╰─ / [194] + │ │ │ ├─ mark_as_spam [188] + │ │ │ │ ╰─ / [188] + │ │ │ ├─ edit [197] + │ │ │ │ ╰─ / [197] + │ │ │ ╰─ raw [187] + │ │ │ ╰─ / [187] │ │ ├─ martcard/ - │ │ │ ├─ extract_certificate [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ verify_certificate [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ auth [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ extract_certificate [130] + │ │ │ │ ╰─ / [130] + │ │ │ ├─ verify_certificate [131] + │ │ │ │ ╰─ / [131] + │ │ │ ╰─ auth [129] + │ │ │ ╰─ / [129] │ │ ├─ andbox/ - │ │ │ ├─ mermaid [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ swagger [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ mermaid [58] + │ │ │ │ ╰─ / [58] + │ │ │ ╰─ swagger [59] + │ │ │ ╰─ / [59] │ │ ├─ / - │ │ │ ╰─ {username} [*] - │ │ │ ╰─ / [*] + │ │ │ ╰─ {username} [200] + │ │ │ ╰─ / [200] │ │ ╰─ e - │ │ ├─ curity [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ vulnerabilities [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ dashboard [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ settings [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ projects [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ {id} [*] - │ │ │ ╰─ / [*] + │ │ ├─ curity [123] + │ │ │ ╰─ / [123] + │ │ │ ├─ vulnerabilities [128] + │ │ │ │ ╰─ / [128] + │ │ │ ├─ dashboard [125] + │ │ │ │ ╰─ / [125] + │ │ │ │ ╰─ settings [124] + │ │ │ │ ╰─ / [124] + │ │ │ ╰─ projects [126] + │ │ │ ╰─ / [126] + │ │ │ ╰─ {id} [127] + │ │ │ ╰─ / [127] │ │ ╰─ nt_notifications/ │ │ ╰─ {id} - │ │ ╰─ /unsubscribe [*] - │ │ ╰─ / [*] + │ │ ╰─ /unsubscribe [183] + │ │ ╰─ / [183] │ ├─ t - │ │ ├─ imelogs [*] - │ │ │ ╰─ / [*] + │ │ ├─ imelogs [256] + │ │ │ ╰─ / [256] │ │ ╰─ r - │ │ ├─ ack_namespace_visits [*] - │ │ │ ╰─ / [*] + │ │ ├─ ack_namespace_visits [257] + │ │ │ ╰─ / [257] │ │ ╰─ ial - │ │ ├─ _registrations [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ new [*] - │ │ │ ╰─ / [*] - │ │ ╰─ s [*] - │ │ ╰─ / [*] + │ │ ├─ _registrations [132] + │ │ │ ╰─ / [132] + │ │ │ ╰─ new [133] + │ │ │ ╰─ / [133] + │ │ ╰─ s [148] + │ │ ╰─ / [148] │ │ ├─ duo_ - │ │ │ ├─ enterprise [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ new [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ pro [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ new [*] - │ │ │ ╰─ / [*] - │ │ ╰─ new [*] - │ │ ╰─ / [*] + │ │ │ ├─ enterprise [153] + │ │ │ │ ╰─ / [153] + │ │ │ │ ╰─ new [152] + │ │ │ │ ╰─ / [152] + │ │ │ ╰─ pro [151] + │ │ │ ╰─ / [151] + │ │ │ ╰─ new [150] + │ │ │ ╰─ / [150] + │ │ ╰─ new [149] + │ │ ╰─ / [149] │ ╰─ {model} │ ╰─ / │ ╰─ {model_id} │ ╰─ /uploads/ │ ╰─ {secret} │ ╰─ / - │ ╰─ {filename} [*] - │ ╰─ / [*] + │ ╰─ {filename} [60] + │ ╰─ / [60] ├─ a - │ ├─ dmin [*] - │ │ ╰─ / [*] - │ │ ├─ namespace_limits [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ export_usage [*] - │ │ │ ╰─ / [*] - │ │ ├─ organizations [*] - │ │ │ ╰─ / [*] - │ │ ├─ version_check [*] - │ │ │ ╰─ / [*] - │ │ ├─ topics [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ preview_markdown [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ merge [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ new [*] - │ │ │ │ ╰─ / [*] + │ ├─ dmin [876] + │ │ ╰─ / [876] + │ │ ├─ namespace_limits [720] + │ │ │ ╰─ / [720] + │ │ │ ╰─ export_usage [721] + │ │ │ ╰─ / [721] + │ │ ├─ organizations [771] + │ │ │ ╰─ / [771] + │ │ ├─ version_check [877] + │ │ │ ╰─ / [877] + │ │ ├─ topics [778] + │ │ │ ╰─ / [778] + │ │ │ ├─ preview_markdown [776] + │ │ │ │ ╰─ / [776] + │ │ │ ├─ merge [777] + │ │ │ │ ╰─ / [777] + │ │ │ ├─ new [779] + │ │ │ │ ╰─ / [779] │ │ │ ├─ {topic_id} - │ │ │ │ ╰─ /avatar [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {id} [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ edit [*] - │ │ │ ╰─ / [*] - │ │ ├─ jobs [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ cancel_all [*] - │ │ │ ╰─ / [*] + │ │ │ │ ╰─ /avatar [775] + │ │ │ │ ╰─ / [775] + │ │ │ ╰─ {id} [781] + │ │ │ ╰─ / [781] + │ │ │ ╰─ edit [780] + │ │ │ ╰─ / [780] + │ │ ├─ jobs [862] + │ │ │ ╰─ / [862] + │ │ │ ╰─ cancel_all [861] + │ │ │ ╰─ / [861] │ │ ├─ us - │ │ │ ├─ age_trends [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ age_trends [807] + │ │ │ │ ╰─ / [807] │ │ │ ╰─ er - │ │ │ ├─ _permission_exports [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ s [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ new [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ _permission_exports [677] + │ │ │ │ ╰─ / [677] + │ │ │ ╰─ s [747] + │ │ │ ╰─ / [747] + │ │ │ ├─ new [748] + │ │ │ │ ╰─ / [748] │ │ │ ├─ {user_id} │ │ │ │ ╰─ / │ │ │ │ ├─ i - │ │ │ │ │ ├─ dentities [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ edit [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ mpersonation_tokens [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ dentities [724] + │ │ │ │ │ │ ╰─ / [724] + │ │ │ │ │ │ ├─ new [725] + │ │ │ │ │ │ │ ╰─ / [725] + │ │ │ │ │ │ ╰─ {id} [727] + │ │ │ │ │ │ ╰─ / [727] + │ │ │ │ │ │ ╰─ edit [726] + │ │ │ │ │ │ ╰─ / [726] + │ │ │ │ │ ╰─ mpersonation_tokens [729] + │ │ │ │ │ ╰─ / [729] │ │ │ │ │ ╰─ {id} - │ │ │ │ │ ╰─ /revoke [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ /revoke [728] + │ │ │ │ │ ╰─ / [728] │ │ │ │ ╰─ keys/ - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {id} [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ trust [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ edit [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ keys [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ╰─ {id} [723] + │ │ │ │ ╰─ / [723] + │ │ │ ╰─ {id} [750] + │ │ │ ╰─ / [750] + │ │ │ ├─ trust [741] + │ │ │ │ ╰─ / [741] + │ │ │ ├─ edit [749] + │ │ │ │ ╰─ / [749] + │ │ │ ├─ keys [731] + │ │ │ │ ╰─ / [731] │ │ │ ├─ re - │ │ │ │ ├─ set_runners_minutes [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ ject [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ set_runners_minutes [665] + │ │ │ │ │ ╰─ / [665] + │ │ │ │ ├─ ject [743] + │ │ │ │ │ ╰─ / [743] │ │ │ │ ╰─ move/ - │ │ │ │ ╰─ {email_id} [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ╰─ {email_id} [746] + │ │ │ │ ╰─ / [746] │ │ │ ├─ un - │ │ │ │ ├─ trust [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ lock [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ trust [742] + │ │ │ │ │ ╰─ / [742] + │ │ │ │ ├─ lock [738] + │ │ │ │ │ ╰─ / [738] │ │ │ │ ╰─ b - │ │ │ │ ├─ lock [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ an [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ lock [733] + │ │ │ │ │ ╰─ / [733] + │ │ │ │ ╰─ an [735] + │ │ │ │ ╰─ / [735] │ │ │ ├─ a - │ │ │ │ ├─ ctivate [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ pprove [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ ctivate [737] + │ │ │ │ │ ╰─ / [737] + │ │ │ │ ╰─ pprove [740] + │ │ │ │ ╰─ / [740] │ │ │ ├─ b - │ │ │ │ ├─ lock [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ an [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ lock [732] + │ │ │ │ │ ╰─ / [732] + │ │ │ │ ╰─ an [734] + │ │ │ │ ╰─ / [734] │ │ │ ├─ c - │ │ │ │ ├─ ard_match [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ onfirm [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ ard_match [666] + │ │ │ │ │ ╰─ / [666] + │ │ │ │ ╰─ onfirm [739] + │ │ │ │ ╰─ / [739] │ │ │ ├─ d - │ │ │ │ ├─ isable_two_factor [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ isable_two_factor [745] + │ │ │ │ │ ╰─ / [745] │ │ │ │ ╰─ e - │ │ │ │ ├─ stroy_identity_verification_exemption [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ activate [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ stroy_identity_verification_exemption [664] + │ │ │ │ │ ╰─ / [664] + │ │ │ │ ╰─ activate [736] + │ │ │ │ ╰─ / [736] │ │ │ ├─ i - │ │ │ │ ├─ dentity_verification_exemption [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ mpersonate [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ dentity_verification_exemption [663] + │ │ │ │ │ ╰─ / [663] + │ │ │ │ ╰─ mpersonate [744] + │ │ │ │ ╰─ / [744] │ │ │ ╰─ p - │ │ │ ├─ hone_match [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ rojects [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ hone_match [667] + │ │ │ │ ╰─ / [667] + │ │ │ ╰─ rojects [730] + │ │ │ ╰─ / [730] │ │ ├─ a │ │ │ ├─ pplication - │ │ │ │ ├─ _settings [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ lets_encrypt_terms_of_service [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ metrics_and_profiling [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ integrations [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ overrides [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ reset [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ edit [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ test [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ preferences [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ templates [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ _settings [846] + │ │ │ │ │ ╰─ / [846] + │ │ │ │ │ ├─ lets_encrypt_terms_of_service [837] + │ │ │ │ │ │ ╰─ / [837] + │ │ │ │ │ ├─ metrics_and_profiling [834] + │ │ │ │ │ │ ╰─ / [834] + │ │ │ │ │ ├─ integrations [830] + │ │ │ │ │ │ ╰─ / [830] + │ │ │ │ │ │ ╰─ {id} [821] + │ │ │ │ │ │ ╰─ / [821] + │ │ │ │ │ │ ├─ overrides [817] + │ │ │ │ │ │ │ ╰─ / [817] + │ │ │ │ │ │ ├─ reset [819] + │ │ │ │ │ │ │ ╰─ / [819] + │ │ │ │ │ │ ├─ edit [820] + │ │ │ │ │ │ │ ╰─ / [820] + │ │ │ │ │ │ ╰─ test [818] + │ │ │ │ │ │ ╰─ / [818] + │ │ │ │ │ ├─ preferences [836] + │ │ │ │ │ │ ╰─ / [836] + │ │ │ │ │ ├─ templates [694] + │ │ │ │ │ │ ╰─ / [694] │ │ │ │ │ ├─ ge - │ │ │ │ │ │ ├─ neral [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ o [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ neral [829] + │ │ │ │ │ │ │ ╰─ / [829] + │ │ │ │ │ │ ╰─ o [699] + │ │ │ │ │ │ ╰─ / [699] │ │ │ │ │ ├─ a - │ │ │ │ │ │ ├─ ppearance [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ├─ header_logos [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ├─ favicon [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ├─ logo [*] - │ │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ ppearance [845] + │ │ │ │ │ │ │ ╰─ / [845] + │ │ │ │ │ │ │ ├─ header_logos [843] + │ │ │ │ │ │ │ │ ╰─ / [843] + │ │ │ │ │ │ │ ├─ favicon [844] + │ │ │ │ │ │ │ │ ╰─ / [844] + │ │ │ │ │ │ │ ├─ logo [841] + │ │ │ │ │ │ │ │ ╰─ / [841] │ │ │ │ │ │ │ ╰─ p - │ │ │ │ │ │ │ ├─ review_sign_in [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ wa_icon [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ dvanced_search [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ nalytics [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ├─ review_sign_in [840] + │ │ │ │ │ │ │ │ ╰─ / [840] + │ │ │ │ │ │ │ ╰─ wa_icon [842] + │ │ │ │ │ │ │ ╰─ / [842] + │ │ │ │ │ │ ├─ dvanced_search [695] + │ │ │ │ │ │ │ ╰─ / [695] + │ │ │ │ │ │ ╰─ nalytics [698] + │ │ │ │ │ │ ╰─ / [698] │ │ │ │ │ ├─ c - │ │ │ │ │ │ ├─ lear_repository_check_states [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ i_cd [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ lear_repository_check_states [828] + │ │ │ │ │ │ │ ╰─ / [828] + │ │ │ │ │ │ ╰─ i_cd [832] + │ │ │ │ │ │ ╰─ / [832] │ │ │ │ │ ├─ n - │ │ │ │ │ │ ├─ amespace_storage [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ etwork [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ amespace_storage [697] + │ │ │ │ │ │ │ ╰─ / [697] + │ │ │ │ │ │ ╰─ etwork [835] + │ │ │ │ │ │ ╰─ / [835] │ │ │ │ │ ├─ r │ │ │ │ │ │ ├─ e │ │ │ │ │ │ │ ├─ po - │ │ │ │ │ │ │ │ ├─ sitory [*] - │ │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ │ ╰─ rting [*] - │ │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ │ ├─ sitory [831] + │ │ │ │ │ │ │ │ │ ╰─ / [831] + │ │ │ │ │ │ │ │ ╰─ rting [833] + │ │ │ │ │ │ │ │ ╰─ / [833] │ │ │ │ │ │ │ ╰─ set_ - │ │ │ │ │ │ │ ├─ error_tracking_access_token [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ├─ health_check_token [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ registration_token [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ oles_and_permissions [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ edit [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ├─ error_tracking_access_token [827] + │ │ │ │ │ │ │ │ ╰─ / [827] + │ │ │ │ │ │ │ ├─ health_check_token [826] + │ │ │ │ │ │ │ │ ╰─ / [826] + │ │ │ │ │ │ │ ╰─ registration_token [825] + │ │ │ │ │ │ │ ╰─ / [825] + │ │ │ │ │ │ ╰─ oles_and_permissions [702] + │ │ │ │ │ │ ╰─ / [702] + │ │ │ │ │ │ ├─ new [703] + │ │ │ │ │ │ │ ╰─ / [703] + │ │ │ │ │ │ ╰─ {id} [705] + │ │ │ │ │ │ ╰─ / [705] + │ │ │ │ │ │ ╰─ edit [704] + │ │ │ │ │ │ ╰─ / [704] │ │ │ │ │ ├─ s - │ │ │ │ │ │ ├─ lack [*] - │ │ │ │ │ │ │ ├─ / [*] - │ │ │ │ │ │ │ │ ╰─ slack_auth [*] - │ │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ lack [823] + │ │ │ │ │ │ │ ├─ / [823] + │ │ │ │ │ │ │ │ ╰─ slack_auth [822] + │ │ │ │ │ │ │ │ ╰─ / [822] │ │ │ │ │ │ │ ╰─ _app_manifest_ - │ │ │ │ │ │ │ ├─ download [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ share [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ cim_oauth [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ├─ download [838] + │ │ │ │ │ │ │ │ ╰─ / [838] + │ │ │ │ │ │ │ ╰─ share [839] + │ │ │ │ │ │ │ ╰─ / [839] + │ │ │ │ │ │ ├─ cim_oauth [701] + │ │ │ │ │ │ │ ╰─ / [701] │ │ │ │ │ │ ╰─ e - │ │ │ │ │ │ ├─ curity_and_compliance [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ at_link_payload [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ curity_and_compliance [696] + │ │ │ │ │ │ │ ╰─ / [696] + │ │ │ │ │ │ ╰─ at_link_payload [693] + │ │ │ │ │ │ ╰─ / [693] │ │ │ │ │ ╰─ u - │ │ │ │ │ ├─ pdate_microsoft_application [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ sage_data [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ s [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ new [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ renew [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ edit [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ buse_reports [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ moderate_user [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ pdate_microsoft_application [700] + │ │ │ │ │ │ ╰─ / [700] + │ │ │ │ │ ╰─ sage_data [824] + │ │ │ │ │ ╰─ / [824] + │ │ │ │ ╰─ s [765] + │ │ │ │ ╰─ / [765] + │ │ │ │ ├─ new [766] + │ │ │ │ │ ╰─ / [766] + │ │ │ │ ╰─ {id} [768] + │ │ │ │ ╰─ / [768] + │ │ │ │ ├─ renew [764] + │ │ │ │ │ ╰─ / [764] + │ │ │ │ ╰─ edit [767] + │ │ │ │ ╰─ / [767] + │ │ │ ├─ buse_reports [758] + │ │ │ │ ╰─ / [758] + │ │ │ │ ╰─ {id} [759] + │ │ │ │ ╰─ / [759] + │ │ │ │ ╰─ moderate_user [757] + │ │ │ │ ╰─ / [757] │ │ │ ├─ udit_log - │ │ │ │ ├─ _reports [*] - │ │ │ │ │ ├─ / [*] + │ │ │ │ ├─ _reports [672] + │ │ │ │ │ ├─ / [672] │ │ │ │ │ ╰─ . - │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ s [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ {format} [672] + │ │ │ │ │ ╰─ / [672] + │ │ │ │ ╰─ s [671] + │ │ │ │ ╰─ / [671] │ │ │ ╰─ i/ - │ │ │ ├─ self_hosted_models [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ terms_and_conditions [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ new [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ edit [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ feature_settings [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ {id} [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ edit [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ self_hosted_models [686] + │ │ │ │ ╰─ / [686] + │ │ │ │ ├─ terms_and_conditions [685] + │ │ │ │ │ ╰─ / [685] + │ │ │ │ ├─ new [687] + │ │ │ │ │ ╰─ / [687] + │ │ │ │ ╰─ {id} [689] + │ │ │ │ ╰─ / [689] + │ │ │ │ ╰─ edit [688] + │ │ │ │ ╰─ / [688] + │ │ │ ╰─ feature_settings [690] + │ │ │ ╰─ / [690] + │ │ │ ╰─ {id} [692] + │ │ │ ╰─ / [692] + │ │ │ ╰─ edit [691] + │ │ │ ╰─ / [691] │ │ ├─ b - │ │ │ ├─ roadcast_messages [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ preview [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ edit [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ roadcast_messages [793] + │ │ │ │ ╰─ / [793] + │ │ │ │ ├─ preview [792] + │ │ │ │ │ ╰─ / [792] + │ │ │ │ ╰─ {id} [795] + │ │ │ │ ╰─ / [795] + │ │ │ │ ╰─ edit [794] + │ │ │ │ ╰─ / [794] │ │ │ ╰─ ackground_ - │ │ │ ├─ migrations [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ migrations [801] + │ │ │ │ ╰─ / [801] │ │ │ │ ├─ {background_migration_id} │ │ │ │ │ ╰─ /batched_jobs/ - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ {id} [797] + │ │ │ │ │ ╰─ / [797] + │ │ │ │ ╰─ {id} [802] + │ │ │ │ ╰─ / [802] │ │ │ │ ├─ re - │ │ │ │ │ ├─ sume [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ try [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ pause [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ jobs [*] - │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ sume [799] + │ │ │ │ │ │ ╰─ / [799] + │ │ │ │ │ ╰─ try [800] + │ │ │ │ │ ╰─ / [800] + │ │ │ │ ╰─ pause [798] + │ │ │ │ ╰─ / [798] + │ │ │ ╰─ jobs [804] + │ │ │ ╰─ / [804] │ │ ├─ c - │ │ │ ├─ lusters [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ new_cluster_docs [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ ├─ lusters [873] + │ │ │ │ ╰─ / [873] + │ │ │ │ ├─ new_cluster_docs [865] + │ │ │ │ │ ╰─ / [865] │ │ │ │ ├─ c - │ │ │ │ │ ├─ reate_user [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ onnect [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ reate_user [866] + │ │ │ │ │ │ ╰─ / [866] + │ │ │ │ │ ╰─ onnect [864] + │ │ │ │ │ ╰─ / [864] │ │ │ │ ├─ {cluster_id} - │ │ │ │ │ ╰─ /integration/create_or_update [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ /integration/create_or_update [867] + │ │ │ │ │ ╰─ / [867] + │ │ │ │ ╰─ {id} [874] + │ │ │ │ ╰─ / [874] │ │ │ │ ├─ cl - │ │ │ │ │ ├─ uster_status [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ ear_cache [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ environments [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ metrics [*] - │ │ │ │ ├─ / [*] - │ │ │ │ ╰─ _dashboard [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ i/variables [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ redentials [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ uster_status [871] + │ │ │ │ │ │ ╰─ / [871] + │ │ │ │ │ ╰─ ear_cache [872] + │ │ │ │ │ ╰─ / [872] + │ │ │ │ ├─ environments [869] + │ │ │ │ │ ╰─ / [869] + │ │ │ │ ╰─ metrics [868] + │ │ │ │ ├─ / [868] + │ │ │ │ ╰─ _dashboard [870] + │ │ │ │ ╰─ / [870] + │ │ │ ├─ i/variables [863] + │ │ │ │ ╰─ / [863] + │ │ │ ├─ redentials [675] + │ │ │ │ ╰─ / [675] │ │ │ │ ├─ {credential_id} │ │ │ │ │ ╰─ /resources/ │ │ │ │ │ ╰─ {resource_id} - │ │ │ │ │ ╰─ /revoke [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ revoke [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ /revoke [673] + │ │ │ │ │ ╰─ / [673] + │ │ │ │ ╰─ {id} [676] + │ │ │ │ ╰─ / [676] + │ │ │ │ ╰─ revoke [674] + │ │ │ │ ╰─ / [674] │ │ │ ╰─ o - │ │ │ ├─ de_suggestions [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ horts [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ de_suggestions [684] + │ │ │ │ ╰─ / [684] + │ │ │ ╰─ horts [810] + │ │ │ ╰─ / [810] │ │ ├─ d - │ │ │ ├─ ashboard/stats [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ ashboard/stats [875] + │ │ │ │ ╰─ / [875] │ │ │ ╰─ e - │ │ │ ├─ v_ops_report [*] - │ │ │ │ ├─ / [*] - │ │ │ │ ╰─ s [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ ploy_keys [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ new [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {id} [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ edit [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ v_ops_report [809] + │ │ │ │ ├─ / [809] + │ │ │ │ ╰─ s [808] + │ │ │ │ ╰─ / [808] + │ │ │ ╰─ ploy_keys [782] + │ │ │ ╰─ / [782] + │ │ │ ├─ new [783] + │ │ │ │ ╰─ / [783] + │ │ │ ╰─ {id} [785] + │ │ │ ╰─ / [785] + │ │ │ ╰─ edit [784] + │ │ │ ╰─ / [784] │ │ ├─ e │ │ │ ├─ lasticsearch/ - │ │ │ │ ├─ cancel_index_deletion [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ trigger_reindexing [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ retry_migration [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ enqueue_index [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ mail [*] - │ │ │ ╰─ / [*] + │ │ │ │ ├─ cancel_index_deletion [718] + │ │ │ │ │ ╰─ / [718] + │ │ │ │ ├─ trigger_reindexing [717] + │ │ │ │ │ ╰─ / [717] + │ │ │ │ ├─ retry_migration [719] + │ │ │ │ │ ╰─ / [719] + │ │ │ │ ╰─ enqueue_index [716] + │ │ │ │ ╰─ / [716] + │ │ │ ╰─ mail [670] + │ │ │ ╰─ / [670] │ │ ├─ g - │ │ │ ├─ italy_servers [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ eo [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ replication [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {replicable_name_plural} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ ├─ italy_servers [760] + │ │ │ │ ╰─ / [760] + │ │ │ ├─ eo [706] + │ │ │ │ ╰─ / [706] + │ │ │ │ ├─ replication [713] + │ │ │ │ │ ╰─ / [713] + │ │ │ │ │ ╰─ {replicable_name_plural} [714] + │ │ │ │ │ ╰─ / [714] │ │ │ │ ╰─ s - │ │ │ │ ├─ ettings [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ ites [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ new [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ replication [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {replicable_name_plural} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ edit [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ roups [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ new [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ ettings [715] + │ │ │ │ │ ╰─ / [715] + │ │ │ │ ╰─ ites [709] + │ │ │ │ ╰─ / [709] + │ │ │ │ ├─ new [710] + │ │ │ │ │ ╰─ / [710] + │ │ │ │ ╰─ {id} [712] + │ │ │ │ ╰─ / [712] + │ │ │ │ ├─ replication [707] + │ │ │ │ │ ╰─ / [707] + │ │ │ │ │ ╰─ {replicable_name_plural} [708] + │ │ │ │ │ ╰─ / [708] + │ │ │ │ ╰─ edit [711] + │ │ │ │ ╰─ / [711] + │ │ │ ╰─ roups [769] + │ │ │ ╰─ / [769] + │ │ │ ├─ new [770] + │ │ │ │ ╰─ / [770] │ │ │ ├─ {*id} - │ │ │ │ ├─ / [*] - │ │ │ │ │ ├─ reset_runners_minutes [*] - │ │ │ │ │ │ ├─ / [*] + │ │ │ │ ├─ / [774] + │ │ │ │ │ ├─ reset_runners_minutes [668] + │ │ │ │ │ │ ├─ / [668] │ │ │ │ │ │ ╰─ . - │ │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ members_update [*] - │ │ │ │ │ │ ├─ / [*] + │ │ │ │ │ │ ╰─ {format} [668] + │ │ │ │ │ │ ╰─ / [668] + │ │ │ │ │ ├─ members_update [772] + │ │ │ │ │ │ ├─ / [772] │ │ │ │ │ │ ╰─ . - │ │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ edit [*] - │ │ │ │ │ ├─ / [*] + │ │ │ │ │ │ ╰─ {format} [772] + │ │ │ │ │ │ ╰─ / [772] + │ │ │ │ │ ╰─ edit [773] + │ │ │ │ │ ├─ / [773] │ │ │ │ │ ╰─ . - │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ {format} [773] + │ │ │ │ │ ╰─ / [773] │ │ │ │ ╰─ . - │ │ │ │ ╰─ {format} [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {*id} [*] + │ │ │ │ ╰─ {format} [774] + │ │ │ │ ╰─ / [774] + │ │ │ ╰─ {*id} [774] │ │ ├─ h - │ │ │ ├─ ealth_check [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ ooks [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ ealth_check [803] + │ │ │ │ ╰─ / [803] + │ │ │ ╰─ ooks [789] + │ │ │ ╰─ / [789] │ │ │ ├─ {hook_id} │ │ │ │ ╰─ /hook_logs/ - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ retry [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {id} [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ edit [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ test [*] - │ │ │ ╰─ / [*] + │ │ │ │ ╰─ {id} [788] + │ │ │ │ ╰─ / [788] + │ │ │ │ ╰─ retry [787] + │ │ │ │ ╰─ / [787] + │ │ │ ╰─ {id} [791] + │ │ │ ╰─ / [791] + │ │ │ ├─ edit [790] + │ │ │ │ ╰─ / [790] + │ │ │ ╰─ test [786] + │ │ │ ╰─ / [786] │ │ ├─ i │ │ │ ├─ n - │ │ │ │ ├─ stance_review [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ itial_setup [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ new [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ mpersonation [*] - │ │ │ ╰─ / [*] + │ │ │ │ ├─ stance_review [796] + │ │ │ │ │ ╰─ / [796] + │ │ │ │ ╰─ itial_setup [756] + │ │ │ │ ╰─ / [756] + │ │ │ │ ╰─ new [755] + │ │ │ │ ╰─ / [755] + │ │ │ ╰─ mpersonation [754] + │ │ │ ╰─ / [754] │ │ ├─ l - │ │ │ ├─ icense [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ sync_seat_link [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ usage_export [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ download [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ abels [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ new [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {id} [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ edit [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ icense [681] + │ │ │ │ ╰─ / [681] + │ │ │ │ ├─ sync_seat_link [679] + │ │ │ │ │ ╰─ / [679] + │ │ │ │ ├─ usage_export [680] + │ │ │ │ │ ╰─ / [680] + │ │ │ │ ╰─ download [678] + │ │ │ │ ╰─ / [678] + │ │ │ ╰─ abels [848] + │ │ │ ╰─ / [848] + │ │ │ ├─ new [849] + │ │ │ │ ╰─ / [849] + │ │ │ ╰─ {id} [851] + │ │ │ ╰─ / [851] + │ │ │ ╰─ edit [850] + │ │ │ ╰─ / [850] │ │ ├─ p - │ │ │ ├─ lan_limits [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ ush_rule [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ rojects [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ lan_limits [847] + │ │ │ │ ╰─ / [847] + │ │ │ ├─ ush_rule [669] + │ │ │ │ ╰─ / [669] + │ │ │ ╰─ rojects [806] + │ │ │ ╰─ / [806] │ │ │ ╰─ {*namespace_id} │ │ │ ╰─ / - │ │ │ ├─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ repository_check [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ transfer [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ edit [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ {id} [814] + │ │ │ │ ╰─ / [814] + │ │ │ │ ├─ repository_check [812] + │ │ │ │ │ ╰─ / [812] + │ │ │ │ ├─ transfer [811] + │ │ │ │ │ ╰─ / [811] + │ │ │ │ ╰─ edit [813] + │ │ │ │ ╰─ / [813] │ │ │ ╰─ {project_id} - │ │ │ ╰─ /runner_projects [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ {id} [*] - │ │ │ ╰─ / [*] + │ │ │ ╰─ /runner_projects [815] + │ │ │ ╰─ / [815] + │ │ │ ╰─ {id} [816] + │ │ │ ╰─ / [816] │ │ ├─ r - │ │ │ ├─ unners [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ runner_setup_scripts [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ dashboard [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ tag_list [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ new [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ pause [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ edit [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ ├─ unners [857] + │ │ │ │ ╰─ / [857] + │ │ │ │ ├─ runner_setup_scripts [856] + │ │ │ │ │ ╰─ / [856] + │ │ │ │ ├─ dashboard [722] + │ │ │ │ │ ╰─ / [722] + │ │ │ │ ├─ tag_list [855] + │ │ │ │ │ ╰─ / [855] + │ │ │ │ ├─ new [858] + │ │ │ │ │ ╰─ / [858] + │ │ │ │ ╰─ {id} [860] + │ │ │ │ ╰─ / [860] + │ │ │ │ ├─ pause [854] + │ │ │ │ │ ╰─ / [854] + │ │ │ │ ├─ edit [859] + │ │ │ │ │ ╰─ / [859] │ │ │ │ ╰─ re - │ │ │ │ ├─ gister [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ sume [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ ole_promotion_requests [*] - │ │ │ ╰─ / [*] + │ │ │ │ ├─ gister [852] + │ │ │ │ │ ╰─ / [852] + │ │ │ │ ╰─ sume [853] + │ │ │ │ ╰─ / [853] + │ │ │ ╰─ ole_promotion_requests [683] + │ │ │ ╰─ / [683] │ │ ╰─ s - │ │ ├─ ubscription [*] - │ │ │ ╰─ / [*] - │ │ ├─ ystem_info [*] - │ │ │ ╰─ / [*] - │ │ ├─ pam_logs [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ {id} [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ mark_as_ham [*] - │ │ │ ╰─ / [*] - │ │ ├─ ession [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ destroy [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ new [*] - │ │ │ ╰─ / [*] - │ │ ╰─ idekiq [*] - │ │ ╰─ / [*] + │ │ ├─ ubscription [682] + │ │ │ ╰─ / [682] + │ │ ├─ ystem_info [805] + │ │ │ ╰─ / [805] + │ │ ├─ pam_logs [762] + │ │ │ ╰─ / [762] + │ │ │ ╰─ {id} [763] + │ │ │ ╰─ / [763] + │ │ │ ╰─ mark_as_ham [761] + │ │ │ ╰─ / [761] + │ │ ├─ ession [753] + │ │ │ ╰─ / [753] + │ │ │ ├─ destroy [751] + │ │ │ │ ╰─ / [751] + │ │ │ ╰─ new [752] + │ │ │ ╰─ / [752] + │ │ ╰─ idekiq [581] + │ │ ╰─ / [581] │ ╰─ pi/ - │ ├─ v4/geo/graphql [*] - │ │ ╰─ / [*] - │ ╰─ graphql [*] - │ ╰─ / [*] + │ ├─ v4/geo/graphql [573] + │ │ ╰─ / [573] + │ ╰─ graphql [574] + │ ╰─ / [574] ├─ f │ ├─ iles/note/ │ │ ╰─ {id} │ │ ╰─ / - │ │ ╰─ {filename} [*] - │ │ ╰─ / [*] + │ │ ╰─ {filename} [649] + │ │ ╰─ / [649] │ ╰─ avicon. - │ ├─ ico [*] - │ │ ╰─ / [*] - │ ╰─ png [*] - │ ╰─ / [*] + │ ├─ ico [2] + │ │ ╰─ / [2] + │ ╰─ png [1] + │ ╰─ / [1] ├─ p - │ ├─ rojects [*] - │ │ ╰─ / [*] - │ │ ├─ new [*] - │ │ │ ╰─ / [*] - │ │ ╰─ {id} [*] - │ │ ╰─ / [*] - │ ╰─ ublic [*] - │ ╰─ / [*] - │ ╰─ projects [*] - │ ╰─ / [*] + │ ├─ rojects [552] + │ │ ╰─ / [552] + │ │ ├─ new [553] + │ │ │ ╰─ / [553] + │ │ ╰─ {id} [554] + │ │ ╰─ / [554] + │ ╰─ ublic [661] + │ ╰─ / [661] + │ ╰─ projects [662] + │ ╰─ / [662] ├─ u │ ├─ nsubscribes/ - │ │ ╰─ {email} [*] - │ │ ╰─ / [*] + │ │ ╰─ {email} [924] + │ │ ╰─ / [924] │ ├─ ploads/ │ │ ├─ -/system/ │ │ │ ├─ temp/ │ │ │ │ ╰─ {secret} │ │ │ │ ╰─ / - │ │ │ │ ╰─ {filename} [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ╰─ {filename} [646] + │ │ │ │ ╰─ / [646] │ │ │ ╰─ {model} │ │ │ ╰─ / │ │ │ ├─ {mounted_as} │ │ │ │ ╰─ / │ │ │ │ ╰─ {id} │ │ │ │ ╰─ / - │ │ │ │ ╰─ {filename} [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ╰─ {filename} [644] + │ │ │ │ ╰─ / [644] │ │ │ ╰─ {id} │ │ │ ╰─ / │ │ │ ╰─ {secret} │ │ │ ╰─ / - │ │ │ ╰─ {filename} [*] - │ │ │ ╰─ / [*] - │ │ ╰─ {model} [*] - │ │ ╰─ / [*] - │ │ ╰─ authorize [*] - │ │ ╰─ / [*] - │ ╰─ sers [*] - │ ╰─ / [*] - │ ├─ resend_verification_code [*] - │ │ ╰─ / [*] - │ ├─ identity_verification [*] - │ │ ╰─ / [*] + │ │ │ ╰─ {filename} [645] + │ │ │ ╰─ / [645] + │ │ ╰─ {model} [647] + │ │ ╰─ / [647] + │ │ ╰─ authorize [648] + │ │ ╰─ / [648] + │ ╰─ sers [933] + │ ╰─ / [933] + │ ├─ resend_verification_code [941] + │ │ ╰─ / [941] + │ ├─ identity_verification [911] + │ │ ╰─ / [911] │ │ ├─ s - │ │ │ ├─ end_phone_verification_code [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ uccess [*] - │ │ │ ╰─ / [*] - │ │ ├─ toggle_phone_exemption [*] - │ │ │ ╰─ / [*] - │ │ ├─ arkose_labs_challenge [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ end_phone_verification_code [902] + │ │ │ │ ╰─ / [902] + │ │ │ ╰─ uccess [909] + │ │ │ ╰─ / [909] + │ │ ├─ toggle_phone_exemption [905] + │ │ │ ╰─ / [905] + │ │ ├─ arkose_labs_challenge [906] + │ │ │ ╰─ / [906] │ │ ├─ res - │ │ │ ├─ end_email_code [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ tricted [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ end_email_code [901] + │ │ │ │ ╰─ / [901] + │ │ │ ╰─ tricted [910] + │ │ │ ╰─ / [910] │ │ ╰─ verif - │ │ ├─ ication_state [*] - │ │ │ ╰─ / [*] + │ │ ├─ ication_state [899] + │ │ │ ╰─ / [899] │ │ ╰─ y_ - │ │ ├─ phone_verification_code [*] - │ │ │ ╰─ / [*] - │ │ ├─ arkose_labs_session [*] - │ │ │ ╰─ / [*] - │ │ ├─ credit_card [*] - │ │ │ ├─ / [*] - │ │ │ ╰─ _captcha [*] - │ │ │ ╰─ / [*] - │ │ ╰─ email_code [*] - │ │ ╰─ / [*] - │ ├─ password [*] - │ │ ╰─ / [*] - │ │ ├─ complexity [*] - │ │ │ ╰─ / [*] - │ │ ├─ edit [*] - │ │ │ ╰─ / [*] - │ │ ╰─ new [*] - │ │ ╰─ / [*] + │ │ ├─ phone_verification_code [903] + │ │ │ ╰─ / [903] + │ │ ├─ arkose_labs_session [904] + │ │ │ ╰─ / [904] + │ │ ├─ credit_card [907] + │ │ │ ├─ / [907] + │ │ │ ╰─ _captcha [908] + │ │ │ ╰─ / [908] + │ │ ╰─ email_code [900] + │ │ ╰─ / [900] + │ ├─ password [929] + │ │ ╰─ / [929] + │ │ ├─ complexity [921] + │ │ │ ╰─ / [921] + │ │ ├─ edit [928] + │ │ │ ╰─ / [928] + │ │ ╰─ new [927] + │ │ ╰─ / [927] │ ├─ u - │ │ ├─ pdate_email [*] - │ │ │ ╰─ / [*] - │ │ ╰─ nlock [*] - │ │ ╰─ / [*] - │ │ ╰─ new [*] - │ │ ╰─ / [*] - │ ├─ edit [*] - │ │ ╰─ / [*] + │ │ ├─ pdate_email [943] + │ │ │ ╰─ / [943] + │ │ ╰─ nlock [937] + │ │ ╰─ / [937] + │ │ ╰─ new [936] + │ │ ╰─ / [936] + │ ├─ edit [932] + │ │ ╰─ / [932] │ ├─ s - │ │ ├─ uccessful_verification [*] - │ │ │ ╰─ / [*] + │ │ ├─ uccessful_verification [942] + │ │ │ ╰─ / [942] │ │ ╰─ ign_ - │ │ ├─ out [*] - │ │ │ ╰─ / [*] - │ │ ├─ in [*] - │ │ │ ╰─ / [*] - │ │ ╰─ up [*] - │ │ ╰─ / [*] - │ │ ├─ company [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ new [*] - │ │ │ ╰─ / [*] - │ │ ├─ welcome [*] - │ │ │ ╰─ / [*] - │ │ ╰─ groups [*] - │ │ ╰─ / [*] - │ │ ╰─ new [*] - │ │ ╰─ / [*] + │ │ ├─ out [926] + │ │ │ ╰─ / [926] + │ │ ├─ in [925] + │ │ │ ╰─ / [925] + │ │ ╰─ up [931] + │ │ ╰─ / [931] + │ │ ├─ company [36] + │ │ │ ╰─ / [36] + │ │ │ ╰─ new [35] + │ │ │ ╰─ / [35] + │ │ ├─ welcome [34] + │ │ │ ╰─ / [34] + │ │ ╰─ groups [37] + │ │ ╰─ / [37] + │ │ ╰─ new [38] + │ │ ╰─ / [38] │ ├─ a - │ │ ├─ lmost_there [*] - │ │ │ ╰─ / [*] - │ │ ╰─ uth [*] - │ │ ╰─ / [*] - │ │ ├─ kerberos/negotiate [*] - │ │ │ ╰─ / [*] + │ │ ├─ lmost_there [940] + │ │ │ ╰─ / [940] + │ │ ╰─ uth [944] + │ │ ╰─ / [944] + │ │ ├─ kerberos/negotiate [920] + │ │ │ ╰─ / [920] │ │ ╰─ geo/sign_ - │ │ ├─ out [*] - │ │ │ ╰─ / [*] - │ │ ╰─ in [*] - │ │ ╰─ / [*] + │ │ ├─ out [939] + │ │ │ ╰─ / [939] + │ │ ╰─ in [938] + │ │ ╰─ / [938] │ ├─ c - │ │ ├─ onfirmation [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ new [*] - │ │ │ ╰─ / [*] - │ │ ╰─ ancel [*] - │ │ ╰─ / [*] - │ ╰─ {username} [*] - │ ╰─ / [*] - │ ├─ projects [*] - │ │ ╰─ / [*] - │ ├─ unfollow [*] - │ │ ╰─ / [*] - │ ├─ exists [*] - │ │ ╰─ / [*] - │ ├─ follow [*] - │ │ ├─ / [*] - │ │ ├─ ers [*] - │ │ │ ╰─ / [*] - │ │ ╰─ ing [*] - │ │ ╰─ / [*] - │ ├─ groups [*] - │ │ ╰─ / [*] + │ │ ├─ onfirmation [935] + │ │ │ ╰─ / [935] + │ │ │ ╰─ new [934] + │ │ │ ╰─ / [934] + │ │ ╰─ ancel [930] + │ │ ╰─ / [930] + │ ╰─ {username} [966] + │ ╰─ / [966] + │ ├─ projects [956] + │ │ ╰─ / [956] + │ ├─ unfollow [965] + │ │ ╰─ / [965] + │ ├─ exists [962] + │ │ ╰─ / [962] + │ ├─ follow [964] + │ │ ├─ / [964] + │ │ ├─ ers [960] + │ │ │ ╰─ / [960] + │ │ ╰─ ing [961] + │ │ ╰─ / [961] + │ ├─ groups [955] + │ │ ╰─ / [955] │ ├─ a - │ │ ├─ ctivity [*] - │ │ │ ╰─ / [*] + │ │ ├─ ctivity [963] + │ │ │ ╰─ / [963] │ │ ╰─ vailable_ - │ │ ├─ project_templates [*] - │ │ │ ╰─ / [*] - │ │ ╰─ group_templates [*] - │ │ ╰─ / [*] + │ │ ├─ project_templates [922] + │ │ │ ╰─ / [922] + │ │ ╰─ group_templates [923] + │ │ ╰─ / [923] │ ├─ c - │ │ ├─ ontributed [*] - │ │ │ ╰─ / [*] - │ │ ╰─ alendar [*] - │ │ ├─ / [*] - │ │ ╰─ _activities [*] - │ │ ╰─ / [*] + │ │ ├─ ontributed [957] + │ │ │ ╰─ / [957] + │ │ ╰─ alendar [953] + │ │ ├─ / [953] + │ │ ╰─ _activities [954] + │ │ ╰─ / [954] │ ╰─ s - │ ├─ nippets [*] - │ │ ╰─ / [*] - │ ╰─ tarred [*] - │ ╰─ / [*] - ├─ {username} [*] - │ ├─ / [*] + │ ├─ nippets [959] + │ │ ╰─ / [959] + │ ╰─ tarred [958] + │ ╰─ / [958] + ├─ {username} [969] + │ ├─ / [969] │ ╰─ . - │ ├─ keys [*] - │ │ ╰─ / [*] - │ ╰─ gpg [*] - │ ╰─ / [*] + │ ├─ keys [967] + │ │ ╰─ / [967] + │ ╰─ gpg [968] + │ ╰─ / [968] ├─ {*repository_path} - │ ╰─ / [*] + │ ╰─ / [572] │ ├─ info/ │ │ ├─ lfs/ - │ │ │ ├─ objects [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ batch [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ ├─ objects [561] + │ │ │ │ ╰─ / [561] + │ │ │ │ ├─ batch [560] + │ │ │ │ │ ╰─ / [560] │ │ │ │ ├─ {*oid} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*oid} [*] - │ │ │ ╰─ locks [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ verify [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ new [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {id} [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ unlock [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ edit [*] - │ │ │ ╰─ / [*] - │ │ ╰─ refs [*] - │ │ ╰─ / [*] + │ │ │ │ │ ╰─ / [562] + │ │ │ │ ╰─ {*oid} [562] + │ │ │ ╰─ locks [565] + │ │ │ ╰─ / [565] + │ │ │ ├─ verify [564] + │ │ │ │ ╰─ / [564] + │ │ │ ├─ new [566] + │ │ │ │ ╰─ / [566] + │ │ │ ╰─ {id} [568] + │ │ │ ╰─ / [568] + │ │ │ ├─ unlock [563] + │ │ │ │ ╰─ / [563] + │ │ │ ╰─ edit [567] + │ │ │ ╰─ / [567] + │ │ ╰─ refs [555] + │ │ ╰─ / [555] │ ├─ ssh- - │ │ ├─ receive-pack [*] - │ │ │ ╰─ / [*] - │ │ ╰─ upload-pack [*] - │ │ ╰─ / [*] + │ │ ├─ receive-pack [559] + │ │ │ ╰─ / [559] + │ │ ╰─ upload-pack [558] + │ │ ╰─ / [558] │ ╰─ git │ ├─ lab-lfs/objects/ │ │ ├─ {*oid} - │ │ │ ╰─ / [*] - │ │ │ ╰─ {size} [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ authorize [*] - │ │ │ ╰─ / [*] - │ │ ╰─ {*oid} [*] + │ │ │ ╰─ / [569] + │ │ │ ╰─ {size} [571] + │ │ │ ╰─ / [571] + │ │ │ ╰─ authorize [570] + │ │ │ ╰─ / [570] + │ │ ╰─ {*oid} [569] │ ╰─ - - │ ├─ receive-pack [*] - │ │ ╰─ / [*] - │ ╰─ upload-pack [*] - │ ╰─ / [*] + │ ├─ receive-pack [557] + │ │ ╰─ / [557] + │ ╰─ upload-pack [556] + │ ╰─ / [556] ├─ {*unmatched_route} - │ ╰─ / [*] + │ ╰─ / [1640] ├─ {*namespace_id} │ ╰─ / - │ ├─ {project_id} [*] - │ │ ╰─ / [*] + │ ├─ {project_id} [1634] + │ │ ╰─ / [1634] │ │ ├─ v - │ │ │ ├─ ulnerability_feedback [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ ulnerability_feedback [1608] + │ │ │ │ ╰─ / [1608] │ │ │ │ ├─ {*rest} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*rest} [*] - │ │ │ ╰─ ariables [*] - │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ / [1608] + │ │ │ │ ╰─ {*rest} [1608] + │ │ │ ╰─ ariables [1597] + │ │ │ ╰─ / [1597] │ │ │ ├─ {*rest} - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {*rest} [*] - │ │ ├─ uploads [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ authorize [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ╰─ / [1597] + │ │ │ ╰─ {*rest} [1597] + │ │ ├─ uploads [1564] + │ │ │ ╰─ / [1564] + │ │ │ ├─ authorize [1563] + │ │ │ │ ╰─ / [1563] │ │ │ ╰─ {secret} │ │ │ ╰─ / - │ │ │ ╰─ {filename} [*] - │ │ │ ╰─ / [*] - │ │ ├─ hooks [*] - │ │ │ ╰─ / [*] + │ │ │ ╰─ {filename} [1562] + │ │ │ ╰─ / [1562] + │ │ ├─ hooks [1589] + │ │ │ ╰─ / [1589] │ │ │ ├─ {*rest} - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {*rest} [*] - │ │ ├─ wikis [*] - │ │ │ ╰─ / [*] + │ │ │ │ ╰─ / [1589] + │ │ │ ╰─ {*rest} [1589] + │ │ ├─ wikis [1606] + │ │ │ ╰─ / [1606] │ │ │ ├─ {*rest} - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {*rest} [*] + │ │ │ │ ╰─ / [1606] + │ │ │ ╰─ {*rest} [1606] │ │ ├─ de - │ │ │ ├─ pendencies [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ pendencies [1610] + │ │ │ │ ╰─ / [1610] │ │ │ │ ├─ {*rest} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*rest} [*] + │ │ │ │ │ ╰─ / [1610] + │ │ │ │ ╰─ {*rest} [1610] │ │ │ ╰─ scription_templates/names/ - │ │ │ ╰─ {template_type} [*] - │ │ │ ├─ / [*] + │ │ │ ╰─ {template_type} [1521] + │ │ │ ├─ / [1521] │ │ │ ╰─ . - │ │ │ ╰─ {format} [*] - │ │ │ ╰─ / [*] + │ │ │ ╰─ {format} [1521] + │ │ │ ╰─ / [1521] │ │ ├─ -/ - │ │ │ ├─ quality/test_cases [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ new [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ jobs [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ quality/test_cases [975] + │ │ │ │ ╰─ / [975] + │ │ │ │ ├─ new [976] + │ │ │ │ │ ╰─ / [976] + │ │ │ │ ╰─ {id} [977] + │ │ │ │ ╰─ / [977] + │ │ │ ├─ jobs [1108] + │ │ │ │ ╰─ / [1108] │ │ │ │ ├─ artifacts/ │ │ │ │ │ ├─ {*ref_name_and_path} - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {*ref_name_and_path} [*] + │ │ │ │ │ │ ╰─ / [1087] + │ │ │ │ │ ╰─ {*ref_name_and_path} [1087] │ │ │ │ ├─ {job_id} │ │ │ │ │ ╰─ /artifacts/ - │ │ │ │ │ ├─ download [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ browse [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ download [1102] + │ │ │ │ │ │ ╰─ / [1102] + │ │ │ │ │ ├─ browse [1103] + │ │ │ │ │ │ ╰─ / [1103] │ │ │ │ │ │ ├─ {*path} - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {*path} [*] - │ │ │ │ │ ├─ keep [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ╰─ / [1103] + │ │ │ │ │ │ ╰─ {*path} [1103] + │ │ │ │ │ ├─ keep [1107] + │ │ │ │ │ │ ╰─ / [1107] │ │ │ │ │ ├─ external_file/ │ │ │ │ │ │ ├─ {*path} - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {*path} [*] + │ │ │ │ │ │ │ ╰─ / [1105] + │ │ │ │ │ │ ╰─ {*path} [1105] │ │ │ │ │ ├─ file/ │ │ │ │ │ │ ├─ {*path} - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {*path} [*] + │ │ │ │ │ │ │ ╰─ / [1104] + │ │ │ │ │ │ ╰─ {*path} [1104] │ │ │ │ │ ╰─ raw/ │ │ │ │ │ ├─ {*path} - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {*path} [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ unschedule [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ cancel [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ status [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ viewer [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ erase [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ╰─ / [1106] + │ │ │ │ │ ╰─ {*path} [1106] + │ │ │ │ ╰─ {id} [1109] + │ │ │ │ ╰─ / [1109] + │ │ │ │ ├─ unschedule [1090] + │ │ │ │ │ ╰─ / [1090] + │ │ │ │ ├─ cancel [1089] + │ │ │ │ │ ╰─ / [1089] + │ │ │ │ ├─ status [1088] + │ │ │ │ │ ╰─ / [1088] + │ │ │ │ ├─ viewer [1096] + │ │ │ │ │ ╰─ / [1096] + │ │ │ │ ├─ erase [1093] + │ │ │ │ │ ╰─ / [1093] │ │ │ │ ├─ t │ │ │ │ │ ├─ e - │ │ │ │ │ │ ├─ st_report_summary [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ rminal [*] - │ │ │ │ │ │ ├─ .ws/authorize [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ race [*] - │ │ │ │ │ ├─ / [*] + │ │ │ │ │ │ ├─ st_report_summary [1099] + │ │ │ │ │ │ │ ╰─ / [1099] + │ │ │ │ │ │ ╰─ rminal [1097] + │ │ │ │ │ │ ├─ .ws/authorize [1100] + │ │ │ │ │ │ │ ╰─ / [1100] + │ │ │ │ │ │ ╰─ / [1097] + │ │ │ │ │ ╰─ race [1094] + │ │ │ │ │ ├─ / [1094] │ │ │ │ │ ╰─ . - │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ {format} [1094] + │ │ │ │ │ ╰─ / [1094] │ │ │ │ ├─ p - │ │ │ │ │ ├─ roxy [*] - │ │ │ │ │ │ ├─ .ws/authorize [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ lay [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ roxy [1098] + │ │ │ │ │ │ ├─ .ws/authorize [1101] + │ │ │ │ │ │ │ ╰─ / [1101] + │ │ │ │ │ │ ╰─ / [1098] + │ │ │ │ │ ╰─ lay [1092] + │ │ │ │ │ ╰─ / [1092] │ │ │ │ ╰─ r - │ │ │ │ ├─ etry [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ aw [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ etry [1091] + │ │ │ │ │ ╰─ / [1091] + │ │ │ │ ╰─ aw [1095] + │ │ │ │ ╰─ / [1095] │ │ │ ├─ h - │ │ │ │ ├─ ooks [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ ooks [1497] + │ │ │ │ │ ╰─ / [1497] │ │ │ │ │ ├─ {hook_id} │ │ │ │ │ │ ╰─ /hook_logs/ - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ retry [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ edit [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ test [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ arbor/repositories [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ {id} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ╰─ {id} [1496] + │ │ │ │ │ │ ╰─ / [1496] + │ │ │ │ │ │ ╰─ retry [1495] + │ │ │ │ │ │ ╰─ / [1495] + │ │ │ │ │ ╰─ {id} [1499] + │ │ │ │ │ ╰─ / [1499] + │ │ │ │ │ ├─ edit [1498] + │ │ │ │ │ │ ╰─ / [1498] + │ │ │ │ │ ╰─ test [1494] + │ │ │ │ │ ╰─ / [1494] + │ │ │ │ ╰─ arbor/repositories [1505] + │ │ │ │ ╰─ / [1505] + │ │ │ │ ├─ {id} [1506] + │ │ │ │ │ ╰─ / [1506] │ │ │ │ ╰─ {repository_id} - │ │ │ │ ╰─ /artifacts [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ╰─ /artifacts [1504] + │ │ │ │ ╰─ / [1504] │ │ │ │ ╰─ {artifact_id} - │ │ │ │ ╰─ /tags [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ╰─ /tags [1503] + │ │ │ │ ╰─ / [1503] │ │ │ ├─ de │ │ │ │ ├─ sign_management/designs/ │ │ │ │ │ ╰─ {design_id} │ │ │ │ │ ╰─ / │ │ │ │ │ ├─ r - │ │ │ │ │ │ ├─ aw_image [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ aw_image [1288] + │ │ │ │ │ │ │ ╰─ / [1288] │ │ │ │ │ │ ╰─ esized_image/ - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ╰─ {id} [1289] + │ │ │ │ │ │ ╰─ / [1289] │ │ │ │ │ ╰─ {sha} │ │ │ │ │ ╰─ /r - │ │ │ │ │ ├─ aw_image [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ aw_image [1288] + │ │ │ │ │ │ ╰─ / [1288] │ │ │ │ │ ╰─ esized_image/ - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ {id} [1289] + │ │ │ │ │ ╰─ / [1289] │ │ │ │ ╰─ p │ │ │ │ ├─ loy_ - │ │ │ │ │ ├─ keys [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ enabled_keys [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ keys [1170] + │ │ │ │ │ │ ╰─ / [1170] + │ │ │ │ │ │ ├─ enabled_keys [1165] + │ │ │ │ │ │ │ ╰─ / [1165] + │ │ │ │ │ │ ├─ new [1171] + │ │ │ │ │ │ │ ╰─ / [1171] │ │ │ │ │ │ ├─ available_p - │ │ │ │ │ │ │ ├─ roject_keys [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ ublic_keys [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ disable [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ├─ roject_keys [1166] + │ │ │ │ │ │ │ │ ╰─ / [1166] + │ │ │ │ │ │ │ ╰─ ublic_keys [1167] + │ │ │ │ │ │ │ ╰─ / [1167] + │ │ │ │ │ │ ╰─ {id} [1173] + │ │ │ │ │ │ ╰─ / [1173] + │ │ │ │ │ │ ├─ disable [1169] + │ │ │ │ │ │ │ ╰─ / [1169] │ │ │ │ │ │ ╰─ e - │ │ │ │ │ │ ├─ nable [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ dit [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ nable [1168] + │ │ │ │ │ │ │ ╰─ / [1168] + │ │ │ │ │ │ ╰─ dit [1172] + │ │ │ │ │ │ ╰─ / [1172] │ │ │ │ │ ╰─ tokens/ │ │ │ │ │ ╰─ {id} - │ │ │ │ │ ╰─ /revoke [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ endencies [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ /revoke [1174] + │ │ │ │ │ ╰─ / [1174] + │ │ │ │ ╰─ endencies [1033] + │ │ │ │ ╰─ / [1033] │ │ │ ├─ ne │ │ │ │ ├─ twork/ - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ {id} [1422] + │ │ │ │ │ ╰─ / [1422] │ │ │ │ ╰─ w/ │ │ │ │ ├─ {*id} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*id} [*] + │ │ │ │ │ ╰─ / [1441] + │ │ │ │ ╰─ {*id} [1441] │ │ │ ├─ on - │ │ │ │ ├─ call_schedules [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ _demand_scans [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ new [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ call_schedules [1055] + │ │ │ │ │ ╰─ / [1055] + │ │ │ │ ╰─ _demand_scans [1040] + │ │ │ │ ╰─ / [1040] + │ │ │ │ ├─ new [1041] + │ │ │ │ │ ╰─ / [1041] │ │ │ │ ╰─ {id} - │ │ │ │ ╰─ /edit [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ╰─ /edit [1042] + │ │ │ │ ╰─ / [1042] │ │ │ ├─ a - │ │ │ │ ├─ vatar [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ ws [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ configuration [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ lert_management [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ details [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ vatar [1207] + │ │ │ │ │ ╰─ / [1207] + │ │ │ │ ├─ ws [1255] + │ │ │ │ │ ╰─ / [1255] + │ │ │ │ │ ╰─ configuration [1256] + │ │ │ │ │ ╰─ / [1256] + │ │ │ │ ├─ lert_management [1274] + │ │ │ │ │ ╰─ / [1274] + │ │ │ │ │ ╰─ {id} [1275] + │ │ │ │ │ ╰─ / [1275] + │ │ │ │ │ ╰─ details [1273] + │ │ │ │ │ ╰─ / [1273] │ │ │ │ │ ├─ {*page} - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {*page} [*] + │ │ │ │ │ │ ╰─ / [1273] + │ │ │ │ │ ╰─ {*page} [1273] │ │ │ │ ├─ nalytics/ - │ │ │ │ │ ├─ value_stream_analytics [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ value_streams [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ├─ {id} [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ │ ╰─ edit [*] - │ │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ value_stream_analytics [1225] + │ │ │ │ │ │ ╰─ / [1225] + │ │ │ │ │ │ ├─ value_streams [1021] + │ │ │ │ │ │ │ ╰─ / [1021] + │ │ │ │ │ │ │ ├─ new [1022] + │ │ │ │ │ │ │ │ ╰─ / [1022] + │ │ │ │ │ │ │ ├─ {id} [1024] + │ │ │ │ │ │ │ │ ╰─ / [1024] + │ │ │ │ │ │ │ │ ╰─ edit [1023] + │ │ │ │ │ │ │ │ ╰─ / [1023] │ │ │ │ │ │ │ ╰─ {value_stream_id} - │ │ │ │ │ │ │ ╰─ /stages [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ╰─ /stages [1230] + │ │ │ │ │ │ │ ╰─ / [1230] │ │ │ │ │ │ │ ╰─ {id} │ │ │ │ │ │ │ ╰─ / - │ │ │ │ │ │ │ ├─ average [*] - │ │ │ │ │ │ │ │ ├─ / [*] - │ │ │ │ │ │ │ │ ╰─ _duration_chart [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ├─ records [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ├─ median [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ count [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ time_summary [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ summary [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ merge_request_analytics [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ issues_analytics [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ code_reviews [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ dashboards [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ├─ average [1227] + │ │ │ │ │ │ │ │ ├─ / [1227] + │ │ │ │ │ │ │ │ ╰─ _duration_chart [1025] + │ │ │ │ │ │ │ │ ╰─ / [1025] + │ │ │ │ │ │ │ ├─ records [1228] + │ │ │ │ │ │ │ │ ╰─ / [1228] + │ │ │ │ │ │ │ ├─ median [1226] + │ │ │ │ │ │ │ │ ╰─ / [1226] + │ │ │ │ │ │ │ ╰─ count [1229] + │ │ │ │ │ │ │ ╰─ / [1229] + │ │ │ │ │ │ ├─ time_summary [1026] + │ │ │ │ │ │ │ ╰─ / [1026] + │ │ │ │ │ │ ╰─ summary [1231] + │ │ │ │ │ │ ╰─ / [1231] + │ │ │ │ │ ├─ merge_request_analytics [1019] + │ │ │ │ │ │ ╰─ / [1019] + │ │ │ │ │ ├─ issues_analytics [1018] + │ │ │ │ │ │ ╰─ / [1018] + │ │ │ │ │ ├─ code_reviews [1017] + │ │ │ │ │ │ ╰─ / [1017] + │ │ │ │ │ ╰─ dashboards [1020] + │ │ │ │ │ ╰─ / [1020] │ │ │ │ │ ├─ {*vueroute} - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {*vueroute} [*] + │ │ │ │ │ │ ╰─ / [1020] + │ │ │ │ │ ╰─ {*vueroute} [1020] │ │ │ │ ├─ pprover │ │ │ │ │ ├─ _groups/ - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ╰─ {id} [1028] + │ │ │ │ │ │ ╰─ / [1028] │ │ │ │ │ ╰─ s/ - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ {id} [1027] + │ │ │ │ │ ╰─ / [1027] │ │ │ │ ├─ r - │ │ │ │ │ ├─ tifacts [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ tifacts [1079] + │ │ │ │ │ │ ╰─ / [1079] + │ │ │ │ │ │ ╰─ {id} [1080] + │ │ │ │ │ │ ╰─ / [1080] │ │ │ │ │ ╰─ chive/ │ │ │ │ │ ╰─ {id} │ │ │ │ │ ╰─ . - │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ {format} [1076] + │ │ │ │ │ ╰─ / [1076] │ │ │ │ ╰─ u - │ │ │ │ ├─ dit_events [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ dit_events [993] + │ │ │ │ │ ╰─ / [993] │ │ │ │ ╰─ to - │ │ │ │ ├─ mations [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ mations [985] + │ │ │ │ │ ╰─ / [985] │ │ │ │ ╰─ complete_sources/ - │ │ │ │ ├─ vulnerabilities [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ snippets [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ labels [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ epics [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ wikis [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ vulnerabilities [980] + │ │ │ │ │ ╰─ / [980] + │ │ │ │ ├─ snippets [1156] + │ │ │ │ │ ╰─ / [1156] + │ │ │ │ ├─ labels [1153] + │ │ │ │ │ ╰─ / [1153] + │ │ │ │ ├─ epics [978] + │ │ │ │ │ ╰─ / [978] + │ │ │ │ ├─ wikis [1158] + │ │ │ │ │ ╰─ / [1158] │ │ │ │ ├─ co - │ │ │ │ │ ├─ mmands [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ ntacts [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ mmands [1155] + │ │ │ │ │ │ ╰─ / [1155] + │ │ │ │ │ ╰─ ntacts [1157] + │ │ │ │ │ ╰─ / [1157] │ │ │ │ ├─ i - │ │ │ │ │ ├─ terations [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ ssues [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ terations [979] + │ │ │ │ │ │ ╰─ / [979] + │ │ │ │ │ ╰─ ssues [1151] + │ │ │ │ │ ╰─ / [1151] │ │ │ │ ╰─ m - │ │ │ │ ├─ ilestones [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ ilestones [1154] + │ │ │ │ │ ╰─ / [1154] │ │ │ │ ╰─ e - │ │ │ │ ├─ rge_requests [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ mbers [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ rge_requests [1152] + │ │ │ │ │ ╰─ / [1152] + │ │ │ │ ╰─ mbers [1150] + │ │ │ │ ╰─ / [1150] │ │ │ ├─ b - │ │ │ │ ├─ adges/release [*] - │ │ │ │ │ ├─ / [*] + │ │ │ │ ├─ adges/release [1502] + │ │ │ │ │ ├─ / [1502] │ │ │ │ │ ╰─ . - │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ ranches [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ diverging_commit_counts [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ {state} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ oards [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ {format} [1502] + │ │ │ │ │ ╰─ / [1502] + │ │ │ │ ├─ ranches [1430] + │ │ │ │ │ ╰─ / [1430] + │ │ │ │ │ ├─ diverging_commit_counts [1429] + │ │ │ │ │ │ ╰─ / [1429] + │ │ │ │ │ ├─ new [1431] + │ │ │ │ │ │ ╰─ / [1431] + │ │ │ │ │ ├─ {state} [1428] + │ │ │ │ │ │ ╰─ / [1428] + │ │ │ │ │ ╰─ {id} [1432] + │ │ │ │ │ ╰─ / [1432] + │ │ │ │ ├─ oards [1193] + │ │ │ │ │ ╰─ / [1193] + │ │ │ │ │ ╰─ {id} [1194] + │ │ │ │ │ ╰─ / [1194] │ │ │ │ ╰─ l │ │ │ │ ├─ ame │ │ │ │ │ ├─ _page/ │ │ │ │ │ │ ├─ {*id} - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {*id} [*] + │ │ │ │ │ │ │ ╰─ / [1450] + │ │ │ │ │ │ ╰─ {*id} [1450] │ │ │ │ │ ╰─ / │ │ │ │ │ ├─ {*id} - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ streaming [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {*id} [*] + │ │ │ │ │ │ ╰─ / [1452] + │ │ │ │ │ │ ╰─ streaming [1451] + │ │ │ │ │ │ ╰─ / [1451] + │ │ │ │ │ ╰─ {*id} [1452] │ │ │ │ ╰─ ob/ │ │ │ │ ├─ {*id} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ diff [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*id} [*] + │ │ │ │ │ ╰─ / [1447] + │ │ │ │ │ ╰─ diff [1446] + │ │ │ │ │ ╰─ / [1446] + │ │ │ │ ╰─ {*id} [1447] │ │ │ ├─ c - │ │ │ │ ├─ ycle_analytics [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ adences [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ ycle_analytics [1224] + │ │ │ │ │ ╰─ / [1224] + │ │ │ │ ├─ adences [1051] + │ │ │ │ │ ╰─ / [1051] + │ │ │ │ │ ├─ new [1052] + │ │ │ │ │ │ ╰─ / [1052] │ │ │ │ │ ├─ {iteration_cadence_id} - │ │ │ │ │ │ ╰─ /iterations [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ edit [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ╰─ /iterations [1049] + │ │ │ │ │ │ ╰─ / [1049] + │ │ │ │ │ │ ╰─ {id} [1050] + │ │ │ │ │ │ ╰─ / [1050] + │ │ │ │ │ ├─ {id} [1054] + │ │ │ │ │ │ ╰─ / [1054] + │ │ │ │ │ │ ╰─ edit [1053] + │ │ │ │ │ │ ╰─ / [1053] │ │ │ │ │ ├─ {*vueroute} - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ╰─ / [1051] + │ │ │ │ │ │ ├─ new [1052] + │ │ │ │ │ │ │ ╰─ / [1052] │ │ │ │ │ │ ├─ {iteration_cadence_id} - │ │ │ │ │ │ │ ╰─ /iterations [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ edit [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {*vueroute} [*] + │ │ │ │ │ │ │ ╰─ /iterations [1049] + │ │ │ │ │ │ │ ╰─ / [1049] + │ │ │ │ │ │ │ ╰─ {id} [1050] + │ │ │ │ │ │ │ ╰─ / [1050] + │ │ │ │ │ │ ╰─ {id} [1054] + │ │ │ │ │ │ ╰─ / [1054] + │ │ │ │ │ │ ╰─ edit [1053] + │ │ │ │ │ │ ╰─ / [1053] + │ │ │ │ │ ╰─ {*vueroute} [1051] │ │ │ │ ├─ luster - │ │ │ │ │ ├─ s [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ new_cluster_docs [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ s [1242] + │ │ │ │ │ │ ╰─ / [1242] + │ │ │ │ │ │ ├─ new_cluster_docs [1234] + │ │ │ │ │ │ │ ╰─ / [1234] │ │ │ │ │ │ ├─ c - │ │ │ │ │ │ │ ├─ reate_user [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ onnect [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ├─ reate_user [1235] + │ │ │ │ │ │ │ │ ╰─ / [1235] + │ │ │ │ │ │ │ ╰─ onnect [1233] + │ │ │ │ │ │ │ ╰─ / [1233] │ │ │ │ │ │ ├─ {cluster_id} - │ │ │ │ │ │ │ ╰─ /integration/create_or_update [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ╰─ /integration/create_or_update [1236] + │ │ │ │ │ │ │ ╰─ / [1236] + │ │ │ │ │ │ ╰─ {id} [1243] + │ │ │ │ │ │ ╰─ / [1243] │ │ │ │ │ │ ├─ cl - │ │ │ │ │ │ │ ├─ uster_status [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ ear_cache [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ environments [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ metrics [*] - │ │ │ │ │ │ ├─ / [*] - │ │ │ │ │ │ ╰─ _dashboard [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ├─ uster_status [1240] + │ │ │ │ │ │ │ │ ╰─ / [1240] + │ │ │ │ │ │ │ ╰─ ear_cache [1241] + │ │ │ │ │ │ │ ╰─ / [1241] + │ │ │ │ │ │ ├─ environments [1238] + │ │ │ │ │ │ │ ╰─ / [1238] + │ │ │ │ │ │ ╰─ metrics [1237] + │ │ │ │ │ │ ├─ / [1237] + │ │ │ │ │ │ ╰─ _dashboard [1239] + │ │ │ │ │ │ ╰─ / [1239] │ │ │ │ │ ╰─ _agents/ - │ │ │ │ │ ╰─ {name} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ {name} [1232] + │ │ │ │ │ ╰─ / [1232] │ │ │ │ ├─ reate │ │ │ │ │ ├─ _dir/ │ │ │ │ │ │ ├─ {*id} - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {*id} [*] + │ │ │ │ │ │ │ ╰─ / [1456] + │ │ │ │ │ │ ╰─ {*id} [1456] │ │ │ │ │ ╰─ / │ │ │ │ │ ├─ {*id} - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {*id} [*] + │ │ │ │ │ │ ╰─ / [1442] + │ │ │ │ │ ╰─ {*id} [1442] │ │ │ │ ├─ i/ - │ │ │ │ │ ├─ prometheus_metrics/histograms [*] - │ │ │ │ │ │ ├─ / [*] + │ │ │ │ │ ├─ prometheus_metrics/histograms [1113] + │ │ │ │ │ │ ├─ / [1113] │ │ │ │ │ │ ╰─ . - │ │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ daily_build_group_report_results [*] - │ │ │ │ │ │ ├─ / [*] + │ │ │ │ │ │ ╰─ {format} [1113] + │ │ │ │ │ │ ╰─ / [1113] + │ │ │ │ │ ├─ daily_build_group_report_results [1112] + │ │ │ │ │ │ ├─ / [1112] │ │ │ │ │ │ ╰─ . - │ │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ editor [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ lint [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ╰─ {format} [1112] + │ │ │ │ │ │ ╰─ / [1112] + │ │ │ │ │ ├─ editor [1111] + │ │ │ │ │ │ ╰─ / [1111] + │ │ │ │ │ ╰─ lint [1110] + │ │ │ │ │ ╰─ / [1110] │ │ │ │ ╰─ om │ │ │ │ ├─ m - │ │ │ │ │ ├─ ent_templates [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ ent_templates [983] + │ │ │ │ │ │ ╰─ / [983] + │ │ │ │ │ │ ╰─ {id} [984] + │ │ │ │ │ │ ╰─ / [984] │ │ │ │ │ ╰─ it - │ │ │ │ │ ├─ s [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ s [1453] + │ │ │ │ │ │ ╰─ / [1453] │ │ │ │ │ │ ├─ {*id} - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ signatures [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {*id} [*] + │ │ │ │ │ │ │ ╰─ / [1455] + │ │ │ │ │ │ │ ╰─ signatures [1454] + │ │ │ │ │ │ │ ╰─ / [1454] + │ │ │ │ │ │ ╰─ {*id} [1455] │ │ │ │ │ ╰─ / - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ merge_requests [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ cherry_pick [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ pipelines [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ branches [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ revert [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ {id} [1459] + │ │ │ │ │ ╰─ / [1459] + │ │ │ │ │ ├─ merge_requests [1466] + │ │ │ │ │ │ ╰─ / [1466] + │ │ │ │ │ ├─ cherry_pick [1463] + │ │ │ │ │ │ ╰─ / [1463] + │ │ │ │ │ ├─ pipelines [1461] + │ │ │ │ │ │ ╰─ / [1461] + │ │ │ │ │ ├─ branches [1460] + │ │ │ │ │ │ ╰─ / [1460] + │ │ │ │ │ ├─ revert [1462] + │ │ │ │ │ │ ╰─ / [1462] │ │ │ │ │ ╰─ diff_f - │ │ │ │ │ ├─ or_path [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ iles [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ pare [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ diff_for_path [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ signatures [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ or_path [1464] + │ │ │ │ │ │ ╰─ / [1464] + │ │ │ │ │ ╰─ iles [1465] + │ │ │ │ │ ╰─ / [1465] + │ │ │ │ ╰─ pare [1418] + │ │ │ │ ╰─ / [1418] + │ │ │ │ ├─ diff_for_path [1416] + │ │ │ │ │ ╰─ / [1416] + │ │ │ │ ├─ signatures [1417] + │ │ │ │ │ ╰─ / [1417] │ │ │ │ ╰─ {from} │ │ │ │ ╰─ ... - │ │ │ │ ╰─ {to} [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ╰─ {to} [1415] + │ │ │ │ ╰─ / [1415] │ │ │ ├─ e - │ │ │ │ ├─ scalation_policies [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ rror_tracking [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ projects [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {issue_id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ stack_trace [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ details [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ nvironments [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ search [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ scalation_policies [1056] + │ │ │ │ │ ╰─ / [1056] + │ │ │ │ ├─ rror_tracking [1287] + │ │ │ │ │ ╰─ / [1287] + │ │ │ │ │ ├─ projects [1283] + │ │ │ │ │ │ ╰─ / [1283] + │ │ │ │ │ ╰─ {issue_id} [1286] + │ │ │ │ │ ╰─ / [1286] + │ │ │ │ │ ├─ stack_trace [1285] + │ │ │ │ │ │ ╰─ / [1285] + │ │ │ │ │ ╰─ details [1284] + │ │ │ │ │ ╰─ / [1284] + │ │ │ │ ├─ nvironments [1269] + │ │ │ │ │ ╰─ / [1269] + │ │ │ │ │ ├─ search [1264] + │ │ │ │ │ │ ╰─ / [1264] + │ │ │ │ │ ├─ new [1270] + │ │ │ │ │ │ ╰─ / [1270] │ │ │ │ │ ├─ folders/ │ │ │ │ │ │ ├─ {*id} - │ │ │ │ │ │ │ ├─ / [*] + │ │ │ │ │ │ │ ├─ / [1263] │ │ │ │ │ │ │ ╰─ . - │ │ │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {*id} [*] + │ │ │ │ │ │ │ ╰─ {format} [1263] + │ │ │ │ │ │ │ ╰─ / [1263] + │ │ │ │ │ │ ╰─ {*id} [1263] │ │ │ │ │ ├─ {environment_id} - │ │ │ │ │ │ ╰─ /deployments [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ additional_metrics [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ metrics [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ cancel_auto_stop [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ terminal [*] - │ │ │ │ │ │ ├─ .ws/authorize [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ edit [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ stop [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ k8s [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ╰─ /deployments [1267] + │ │ │ │ │ │ ╰─ / [1267] + │ │ │ │ │ │ ╰─ {id} [1268] + │ │ │ │ │ │ ╰─ / [1268] + │ │ │ │ │ │ ├─ additional_metrics [1266] + │ │ │ │ │ │ │ ╰─ / [1266] + │ │ │ │ │ │ ╰─ metrics [1265] + │ │ │ │ │ │ ╰─ / [1265] + │ │ │ │ │ ╰─ {id} [1272] + │ │ │ │ │ ╰─ / [1272] + │ │ │ │ │ ├─ cancel_auto_stop [1258] + │ │ │ │ │ │ ╰─ / [1258] + │ │ │ │ │ ├─ terminal [1259] + │ │ │ │ │ │ ├─ .ws/authorize [1261] + │ │ │ │ │ │ │ ╰─ / [1261] + │ │ │ │ │ │ ╰─ / [1259] + │ │ │ │ │ ├─ edit [1271] + │ │ │ │ │ │ ╰─ / [1271] + │ │ │ │ │ ├─ stop [1257] + │ │ │ │ │ │ ╰─ / [1257] + │ │ │ │ │ ├─ k8s [1260] + │ │ │ │ │ │ ╰─ / [1260] │ │ │ │ │ │ ├─ {*vueroute} - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {*vueroute} [*] + │ │ │ │ │ │ │ ╰─ / [1260] + │ │ │ │ │ │ ╰─ {*vueroute} [1260] │ │ │ │ │ ╰─ prometheus/api/v1/ │ │ │ │ │ ├─ {*proxy_path} - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {*proxy_path} [*] + │ │ │ │ │ │ ╰─ / [1262] + │ │ │ │ │ ╰─ {*proxy_path} [1262] │ │ │ │ ╰─ dit/ │ │ │ │ ├─ {*id} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*id} [*] + │ │ │ │ │ ╰─ / [1443] + │ │ │ │ ╰─ {*id} [1443] │ │ │ ├─ f - │ │ │ │ ├─ eature_flags [*] + │ │ │ │ ├─ eature_flags [1036] │ │ │ │ │ ├─ _ - │ │ │ │ │ │ ├─ client/reset_token [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ user_lists [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {iid} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ edit [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ client/reset_token [1488] + │ │ │ │ │ │ │ ╰─ / [1488] + │ │ │ │ │ │ ╰─ user_lists [1489] + │ │ │ │ │ │ ╰─ / [1489] + │ │ │ │ │ │ ├─ new [1490] + │ │ │ │ │ │ │ ╰─ / [1490] + │ │ │ │ │ │ ╰─ {iid} [1492] + │ │ │ │ │ │ ╰─ / [1492] + │ │ │ │ │ │ ╰─ edit [1491] + │ │ │ │ │ │ ╰─ / [1491] + │ │ │ │ │ ╰─ / [1036] + │ │ │ │ │ ├─ new [1037] + │ │ │ │ │ │ ╰─ / [1037] │ │ │ │ │ ├─ {feature_flag_iid} - │ │ │ │ │ │ ╰─ /issues [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {iid} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ edit [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ orks [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ new [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ╰─ /issues [1034] + │ │ │ │ │ │ ╰─ / [1034] + │ │ │ │ │ │ ╰─ {id} [1035] + │ │ │ │ │ │ ╰─ / [1035] + │ │ │ │ │ ╰─ {iid} [1039] + │ │ │ │ │ ╰─ / [1039] + │ │ │ │ │ ╰─ edit [1038] + │ │ │ │ │ ╰─ / [1038] + │ │ │ │ ├─ orks [1202] + │ │ │ │ │ ╰─ / [1202] + │ │ │ │ │ ╰─ new [1203] + │ │ │ │ │ ╰─ / [1203] │ │ │ │ ╰─ i │ │ │ │ ├─ nd_file/ │ │ │ │ │ ├─ {*id} - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {*id} [*] + │ │ │ │ │ │ ╰─ / [1457] + │ │ │ │ │ ╰─ {*id} [1457] │ │ │ │ ╰─ les/ │ │ │ │ ├─ {*id} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*id} [*] + │ │ │ │ │ ╰─ / [1458] + │ │ │ │ ╰─ {*id} [1458] │ │ │ ├─ g - │ │ │ │ ├─ oogle_cloud [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ artifact_registry [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ oogle_cloud [1245] + │ │ │ │ │ ╰─ / [1245] + │ │ │ │ │ ├─ artifact_registry [970] + │ │ │ │ │ │ ╰─ / [970] │ │ │ │ │ │ ╰─ projects/ │ │ │ │ │ │ ╰─ {project} │ │ │ │ │ │ ╰─ /locations/ @@ -3118,1304 +3118,1304 @@ fn test_gitlab_display() -> Result<(), Box> { │ │ │ │ │ │ ╰─ /repositories/ │ │ │ │ │ │ ╰─ {repository} │ │ │ │ │ │ ╰─ /dockerImages/ - │ │ │ │ │ │ ╰─ {image} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ service_accounts [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ configuration [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ revoke_oauth [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ╰─ {image} [971] + │ │ │ │ │ │ ╰─ / [971] + │ │ │ │ │ ├─ service_accounts [1248] + │ │ │ │ │ │ ╰─ / [1248] + │ │ │ │ │ ├─ configuration [1246] + │ │ │ │ │ │ ╰─ / [1246] + │ │ │ │ │ ├─ revoke_oauth [1247] + │ │ │ │ │ │ ╰─ / [1247] │ │ │ │ │ ├─ d - │ │ │ │ │ │ ├─ eployments [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ eployments [1250] + │ │ │ │ │ │ │ ╰─ / [1250] │ │ │ │ │ │ │ ╰─ cloud_ - │ │ │ │ │ │ │ ├─ storage [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ run [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ atabases [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ├─ storage [1252] + │ │ │ │ │ │ │ │ ╰─ / [1252] + │ │ │ │ │ │ │ ╰─ run [1251] + │ │ │ │ │ │ │ ╰─ / [1251] + │ │ │ │ │ │ ╰─ atabases [1253] + │ │ │ │ │ │ ╰─ / [1253] │ │ │ │ │ │ ╰─ new/ - │ │ │ │ │ │ ╰─ {product} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ gcp_regions [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ╰─ {product} [1254] + │ │ │ │ │ │ ╰─ / [1254] + │ │ │ │ │ ╰─ gcp_regions [1249] + │ │ │ │ │ ╰─ / [1249] │ │ │ │ ╰─ r │ │ │ │ ├─ oup_links/ - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ {id} [1204] + │ │ │ │ │ ╰─ / [1204] │ │ │ │ ╰─ aphs/ - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ languages [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ╰─ {id} [1427] + │ │ │ │ ╰─ / [1427] + │ │ │ │ ├─ languages [1426] + │ │ │ │ │ ╰─ / [1426] │ │ │ │ ╰─ c - │ │ │ │ ├─ ommits [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ harts [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ i [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ ommits [1424] + │ │ │ │ │ ╰─ / [1424] + │ │ │ │ ├─ harts [1423] + │ │ │ │ │ ╰─ / [1423] + │ │ │ │ ╰─ i [1425] + │ │ │ │ ╰─ / [1425] │ │ │ ├─ i - │ │ │ │ ├─ terations [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ mport [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ jira [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ new [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ ssues [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ service_desk [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ bulk_update [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ export_csv [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ terations [1047] + │ │ │ │ │ ╰─ / [1047] + │ │ │ │ │ ╰─ {id} [1048] + │ │ │ │ │ ╰─ / [1048] + │ │ │ │ ├─ mport [1206] + │ │ │ │ │ ╰─ / [1206] + │ │ │ │ │ ├─ jira [1480] + │ │ │ │ │ │ ╰─ / [1480] + │ │ │ │ │ ╰─ new [1205] + │ │ │ │ │ ╰─ / [1205] + │ │ │ │ ├─ ssues [1295] + │ │ │ │ │ ╰─ / [1295] + │ │ │ │ │ ├─ service_desk [1307] + │ │ │ │ │ │ ╰─ / [1307] + │ │ │ │ │ ├─ bulk_update [1308] + │ │ │ │ │ │ ╰─ / [1308] + │ │ │ │ │ ├─ export_csv [1310] + │ │ │ │ │ │ ╰─ / [1310] + │ │ │ │ │ ├─ new [1315] + │ │ │ │ │ │ ╰─ / [1315] │ │ │ │ │ ├─ i - │ │ │ │ │ │ ├─ mport_csv [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ mport_csv [1309] + │ │ │ │ │ │ │ ╰─ / [1309] │ │ │ │ │ │ ╰─ ncident/ - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {incident_tab} [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ╰─ {id} [1311] + │ │ │ │ │ │ ╰─ / [1311] + │ │ │ │ │ │ ╰─ {incident_tab} [1311] + │ │ │ │ │ │ ╰─ / [1311] │ │ │ │ │ ├─ {issue_id} │ │ │ │ │ │ ╰─ / - │ │ │ │ │ │ ├─ feature_flags [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ links [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ edit [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ feature_flags [1293] + │ │ │ │ │ │ │ ╰─ / [1293] + │ │ │ │ │ │ │ ╰─ {id} [1294] + │ │ │ │ │ │ │ ╰─ / [1294] + │ │ │ │ │ │ ╰─ links [1312] + │ │ │ │ │ │ ╰─ / [1312] + │ │ │ │ │ │ ╰─ {id} [1313] + │ │ │ │ │ │ ╰─ / [1313] + │ │ │ │ │ ╰─ {id} [1317] + │ │ │ │ │ ╰─ / [1317] + │ │ │ │ │ ├─ edit [1316] + │ │ │ │ │ │ ╰─ / [1316] │ │ │ │ │ ├─ toggle_ - │ │ │ │ │ │ ├─ subscription [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ award_emoji [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ subscription [1296] + │ │ │ │ │ │ │ ╰─ / [1296] + │ │ │ │ │ │ ╰─ award_emoji [1314] + │ │ │ │ │ │ ╰─ / [1314] │ │ │ │ │ ├─ re - │ │ │ │ │ │ ├─ altime_changes [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ lated_branches [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ order [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ altime_changes [1302] + │ │ │ │ │ │ │ ╰─ / [1302] + │ │ │ │ │ │ ├─ lated_branches [1300] + │ │ │ │ │ │ │ ╰─ / [1300] + │ │ │ │ │ │ ╰─ order [1299] + │ │ │ │ │ │ ╰─ / [1299] │ │ │ │ │ ├─ c - │ │ │ │ │ │ ├─ reate_merge_request [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ an_create_branch [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ reate_merge_request [1303] + │ │ │ │ │ │ │ ╰─ / [1303] + │ │ │ │ │ │ ╰─ an_create_branch [1301] + │ │ │ │ │ │ ╰─ / [1301] │ │ │ │ │ ├─ d - │ │ │ │ │ │ ├─ iscussions [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ iscussions [1304] + │ │ │ │ │ │ │ ╰─ / [1304] │ │ │ │ │ │ ╰─ es - │ │ │ │ │ │ ├─ igns [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ igns [1305] + │ │ │ │ │ │ │ ╰─ / [1305] │ │ │ │ │ │ │ ├─ {*vueroute} - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ {*vueroute} [*] + │ │ │ │ │ │ │ │ ╰─ / [1305] + │ │ │ │ │ │ │ ╰─ {*vueroute} [1305] │ │ │ │ │ │ ╰─ criptions/ - │ │ │ │ │ │ ╰─ {version_id} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ diff [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ╰─ {version_id} [1292] + │ │ │ │ │ │ ╰─ / [1292] + │ │ │ │ │ │ ╰─ diff [1291] + │ │ │ │ │ │ ╰─ / [1291] │ │ │ │ │ ├─ m - │ │ │ │ │ │ ├─ ark_as_spam [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ ove [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {incident_tab} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ ark_as_spam [1297] + │ │ │ │ │ │ │ ╰─ / [1297] + │ │ │ │ │ │ ╰─ ove [1298] + │ │ │ │ │ │ ╰─ / [1298] + │ │ │ │ │ ╰─ {incident_tab} [1306] + │ │ │ │ │ ╰─ / [1306] │ │ │ │ ╰─ n │ │ │ │ ├─ cident - │ │ │ │ │ ├─ _management/timeline_events/preview_markdown [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ s [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ integrations/pagerduty [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ frastructure_registry [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ _management/timeline_events/preview_markdown [1282] + │ │ │ │ │ │ ╰─ / [1282] + │ │ │ │ │ ╰─ s [1281] + │ │ │ │ │ ╰─ / [1281] + │ │ │ │ │ ╰─ integrations/pagerduty [1280] + │ │ │ │ │ ╰─ / [1280] + │ │ │ │ ├─ frastructure_registry [1086] + │ │ │ │ │ ╰─ / [1086] │ │ │ │ ╰─ tegrations/ - │ │ │ │ ├─ slash_commands [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ confirm [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ zentao/issues [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ jira/issues [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ slash_commands [1501] + │ │ │ │ │ ╰─ / [1501] + │ │ │ │ │ ╰─ confirm [1500] + │ │ │ │ │ ╰─ / [1500] + │ │ │ │ ├─ zentao/issues [1045] + │ │ │ │ │ ╰─ / [1045] + │ │ │ │ │ ╰─ {id} [1046] + │ │ │ │ │ ╰─ / [1046] + │ │ │ │ ╰─ jira/issues [1043] + │ │ │ │ ╰─ / [1043] + │ │ │ │ ╰─ {id} [1044] + │ │ │ │ ╰─ / [1044] │ │ │ ├─ l - │ │ │ │ ├─ abels [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ set_priorities [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ generate [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ toggle_subscription [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ remove_priority [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ promote [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ edit [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ earn_gitlab [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ end_tutorial [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ ogs [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ abels [1189] + │ │ │ │ │ ╰─ / [1189] + │ │ │ │ │ ├─ set_priorities [1185] + │ │ │ │ │ │ ╰─ / [1185] + │ │ │ │ │ ├─ generate [1184] + │ │ │ │ │ │ ╰─ / [1184] + │ │ │ │ │ ├─ new [1190] + │ │ │ │ │ │ ╰─ / [1190] + │ │ │ │ │ ╰─ {id} [1192] + │ │ │ │ │ ╰─ / [1192] + │ │ │ │ │ ├─ toggle_subscription [1187] + │ │ │ │ │ │ ╰─ / [1187] + │ │ │ │ │ ├─ remove_priority [1188] + │ │ │ │ │ │ ╰─ / [1188] + │ │ │ │ │ ├─ promote [1186] + │ │ │ │ │ │ ╰─ / [1186] + │ │ │ │ │ ╰─ edit [1191] + │ │ │ │ │ ╰─ / [1191] + │ │ │ │ ├─ earn_gitlab [989] + │ │ │ │ │ ╰─ / [989] + │ │ │ │ │ ╰─ end_tutorial [988] + │ │ │ │ │ ╰─ / [988] + │ │ │ │ ╰─ ogs [1063] + │ │ │ │ ╰─ / [1063] │ │ │ ├─ m - │ │ │ │ ├─ attermost [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ new [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ attermost [1209] + │ │ │ │ │ ╰─ / [1209] + │ │ │ │ │ ╰─ new [1208] + │ │ │ │ │ ╰─ / [1208] │ │ │ │ ├─ l/ - │ │ │ │ │ ├─ preview_markdown [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ experiments [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {iid} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ agents [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ {id} [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ edit [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ preview_markdown [1514] + │ │ │ │ │ │ ╰─ / [1514] + │ │ │ │ │ ├─ experiments [1507] + │ │ │ │ │ │ ╰─ / [1507] + │ │ │ │ │ │ ╰─ {iid} [1508] + │ │ │ │ │ │ ╰─ / [1508] + │ │ │ │ │ ├─ agents [1064] + │ │ │ │ │ │ ╰─ / [1064] + │ │ │ │ │ │ ├─ new [1065] + │ │ │ │ │ │ │ ╰─ / [1065] + │ │ │ │ │ │ ├─ {id} [1067] + │ │ │ │ │ │ │ ╰─ / [1067] + │ │ │ │ │ │ │ ╰─ edit [1066] + │ │ │ │ │ │ │ ╰─ / [1066] │ │ │ │ │ │ ├─ {*vueroute} - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ edit [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {*vueroute} [*] - │ │ │ │ │ ├─ models [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ {model_id} [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ╰─ / [1064] + │ │ │ │ │ │ │ ├─ new [1065] + │ │ │ │ │ │ │ │ ╰─ / [1065] + │ │ │ │ │ │ │ ╰─ {id} [1067] + │ │ │ │ │ │ │ ╰─ / [1067] + │ │ │ │ │ │ │ ╰─ edit [1066] + │ │ │ │ │ │ │ ╰─ / [1066] + │ │ │ │ │ │ ╰─ {*vueroute} [1064] + │ │ │ │ │ ├─ models [1511] + │ │ │ │ │ │ ╰─ / [1511] + │ │ │ │ │ │ ├─ new [1512] + │ │ │ │ │ │ │ ╰─ / [1512] + │ │ │ │ │ │ ├─ {model_id} [1513] + │ │ │ │ │ │ │ ╰─ / [1513] │ │ │ │ │ │ ╰─ {model_model_id} │ │ │ │ │ │ ╰─ /versions/ - │ │ │ │ │ │ ╰─ {model_version_id} [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ╰─ {model_version_id} [1510] + │ │ │ │ │ │ ╰─ / [1510] │ │ │ │ │ ╰─ candidates/ - │ │ │ │ │ ╰─ {iid} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ {iid} [1509] + │ │ │ │ │ ╰─ / [1509] │ │ │ │ ├─ i - │ │ │ │ │ ├─ rror [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ ssh_host_keys [*] - │ │ │ │ │ │ │ ├─ / [*] + │ │ │ │ │ ├─ rror [1215] + │ │ │ │ │ │ ╰─ / [1215] + │ │ │ │ │ │ ├─ ssh_host_keys [1213] + │ │ │ │ │ │ │ ├─ / [1213] │ │ │ │ │ │ │ ╰─ . - │ │ │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ update_now [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ lestones [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ merge_requests [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ issues [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ labels [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ edit [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ╰─ {format} [1213] + │ │ │ │ │ │ │ ╰─ / [1213] + │ │ │ │ │ │ ╰─ update_now [1214] + │ │ │ │ │ │ ╰─ / [1214] + │ │ │ │ │ ╰─ lestones [1180] + │ │ │ │ │ ╰─ / [1180] + │ │ │ │ │ ├─ new [1181] + │ │ │ │ │ │ ╰─ / [1181] + │ │ │ │ │ ╰─ {id} [1183] + │ │ │ │ │ ╰─ / [1183] + │ │ │ │ │ ├─ merge_requests [1177] + │ │ │ │ │ │ ╰─ / [1177] + │ │ │ │ │ ├─ issues [1176] + │ │ │ │ │ │ ╰─ / [1176] + │ │ │ │ │ ├─ labels [1179] + │ │ │ │ │ │ ╰─ / [1179] + │ │ │ │ │ ├─ edit [1182] + │ │ │ │ │ │ ╰─ / [1182] │ │ │ │ │ ╰─ p - │ │ │ │ │ ├─ articipants [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ romote [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ articipants [1178] + │ │ │ │ │ │ ╰─ / [1178] + │ │ │ │ │ ╰─ romote [1175] + │ │ │ │ │ ╰─ / [1175] │ │ │ │ ╰─ e │ │ │ │ ├─ rge - │ │ │ │ │ ├─ d_branches [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ d_branches [1433] + │ │ │ │ │ │ ╰─ / [1433] │ │ │ │ │ ╰─ _ - │ │ │ │ │ ├─ trains [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ requests [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ diff_for_path [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ bulk_update [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ export_csv [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ target_projects [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ trains [1068] + │ │ │ │ │ │ ╰─ / [1068] + │ │ │ │ │ ╰─ requests [1376] + │ │ │ │ │ ╰─ / [1376] + │ │ │ │ │ ├─ diff_for_path [1368] + │ │ │ │ │ │ ╰─ / [1368] + │ │ │ │ │ ├─ bulk_update [1369] + │ │ │ │ │ │ ╰─ / [1369] + │ │ │ │ │ ├─ export_csv [1370] + │ │ │ │ │ │ ╰─ / [1370] + │ │ │ │ │ ├─ new [1378] + │ │ │ │ │ │ ╰─ / [1378] + │ │ │ │ │ │ ├─ target_projects [1381] + │ │ │ │ │ │ │ ╰─ / [1381] │ │ │ │ │ │ ├─ branch_ - │ │ │ │ │ │ │ ├─ from [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ to [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ pipelines [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ├─ from [1383] + │ │ │ │ │ │ │ │ ╰─ / [1383] + │ │ │ │ │ │ │ ╰─ to [1384] + │ │ │ │ │ │ │ ╰─ / [1384] + │ │ │ │ │ │ ├─ pipelines [1380] + │ │ │ │ │ │ │ ╰─ / [1380] │ │ │ │ │ │ ╰─ diff - │ │ │ │ │ │ ├─ _for_path [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ s [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ _for_path [1382] + │ │ │ │ │ │ │ ╰─ / [1382] + │ │ │ │ │ │ ╰─ s [1379] + │ │ │ │ │ │ ╰─ / [1379] │ │ │ │ │ ├─ {merge_request_id} │ │ │ │ │ │ ╰─ / - │ │ │ │ │ │ ├─ drafts [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ├─ discard [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ├─ publish [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ drafts [1373] + │ │ │ │ │ │ │ ╰─ / [1373] + │ │ │ │ │ │ │ ├─ discard [1372] + │ │ │ │ │ │ │ │ ╰─ / [1372] + │ │ │ │ │ │ │ ├─ publish [1371] + │ │ │ │ │ │ │ │ ╰─ / [1371] + │ │ │ │ │ │ │ ╰─ {id} [1374] + │ │ │ │ │ │ │ ╰─ / [1374] │ │ │ │ │ │ ╰─ approver - │ │ │ │ │ │ ├─ s [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ s [1335] + │ │ │ │ │ │ │ ╰─ / [1335] + │ │ │ │ │ │ │ ╰─ {id} [1334] + │ │ │ │ │ │ │ ╰─ / [1334] │ │ │ │ │ │ ╰─ _groups/ - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ license_scanning_reports [*] - │ │ │ │ │ │ ├─ / [*] - │ │ │ │ │ │ ╰─ _collapsed [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ╰─ {id} [1336] + │ │ │ │ │ │ ╰─ / [1336] + │ │ │ │ │ ╰─ {id} [1337] + │ │ │ │ │ ╰─ / [1337] + │ │ │ │ │ ├─ license_scanning_reports [1321] + │ │ │ │ │ │ ├─ / [1321] + │ │ │ │ │ │ ╰─ _collapsed [1322] + │ │ │ │ │ │ ╰─ / [1322] │ │ │ │ │ ├─ e - │ │ │ │ │ │ ├─ xposed_artifacts [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ dit [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ widget [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ xposed_artifacts [1348] + │ │ │ │ │ │ │ ╰─ / [1348] + │ │ │ │ │ │ ╰─ dit [1377] + │ │ │ │ │ │ ╰─ / [1377] + │ │ │ │ │ ├─ widget [1360] + │ │ │ │ │ │ ╰─ / [1360] │ │ │ │ │ ├─ pipeline - │ │ │ │ │ │ ├─ _status [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ s [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ _status [1341] + │ │ │ │ │ │ │ ╰─ / [1341] + │ │ │ │ │ │ ╰─ s [1355] + │ │ │ │ │ │ ╰─ / [1355] │ │ │ │ │ ├─ me - │ │ │ │ │ │ ├─ trics_reports [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ rge [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ trics_reports [1320] + │ │ │ │ │ │ │ ╰─ / [1320] + │ │ │ │ │ │ ╰─ rge [1339] + │ │ │ │ │ │ ╰─ / [1339] │ │ │ │ │ ├─ re - │ │ │ │ │ │ ├─ solve_conflicts [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ move_wip [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ ports [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ base [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ solve_conflicts [1367] + │ │ │ │ │ │ │ ╰─ / [1367] + │ │ │ │ │ │ ├─ move_wip [1344] + │ │ │ │ │ │ │ ╰─ / [1344] + │ │ │ │ │ │ ├─ ports [1333] + │ │ │ │ │ │ │ ╰─ / [1333] + │ │ │ │ │ │ ╰─ base [1332] + │ │ │ │ │ │ ╰─ / [1332] │ │ │ │ │ ├─ a - │ │ │ │ │ │ ├─ ccessibility_reports [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ ssign_related_issues [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ pi_fuzzing_reports [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ ccessibility_reports [1349] + │ │ │ │ │ │ │ ╰─ / [1349] + │ │ │ │ │ │ ├─ ssign_related_issues [1345] + │ │ │ │ │ │ │ ╰─ / [1345] + │ │ │ │ │ │ ╰─ pi_fuzzing_reports [1329] + │ │ │ │ │ │ ╰─ / [1329] │ │ │ │ │ ├─ c - │ │ │ │ │ │ ├─ i_environments_status [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ i_environments_status [1342] + │ │ │ │ │ │ │ ╰─ / [1342] │ │ │ │ │ │ ├─ a - │ │ │ │ │ │ │ ├─ ncel_auto_merge [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ ched_widget [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ├─ ncel_auto_merge [1340] + │ │ │ │ │ │ │ │ ╰─ / [1340] + │ │ │ │ │ │ │ ╰─ ched_widget [1361] + │ │ │ │ │ │ │ ╰─ / [1361] │ │ │ │ │ │ ╰─ o │ │ │ │ │ │ ├─ n │ │ │ │ │ │ │ ├─ flict - │ │ │ │ │ │ │ │ ├─ _for_path [*] - │ │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ │ ╰─ s [*] - │ │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ │ ├─ _for_path [1366] + │ │ │ │ │ │ │ │ │ ╰─ / [1366] + │ │ │ │ │ │ │ │ ╰─ s [1365] + │ │ │ │ │ │ │ │ ╰─ / [1365] │ │ │ │ │ │ │ ╰─ t - │ │ │ │ │ │ │ ├─ ainer_scanning_reports [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ ext_commits [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ├─ ainer_scanning_reports [1323] + │ │ │ │ │ │ │ │ ╰─ / [1323] + │ │ │ │ │ │ │ ╰─ ext_commits [1356] + │ │ │ │ │ │ │ ╰─ / [1356] │ │ │ │ │ │ ├─ mmit - │ │ │ │ │ │ │ ├─ _change_content [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ s [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ├─ _change_content [1338] + │ │ │ │ │ │ │ │ ╰─ / [1338] + │ │ │ │ │ │ │ ╰─ s [1354] + │ │ │ │ │ │ │ ╰─ / [1354] │ │ │ │ │ │ ├─ dequality_ - │ │ │ │ │ │ │ ├─ mr_diff_reports [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ reports [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ├─ mr_diff_reports [1353] + │ │ │ │ │ │ │ │ ╰─ / [1353] + │ │ │ │ │ │ │ ╰─ reports [1352] + │ │ │ │ │ │ │ ╰─ / [1352] │ │ │ │ │ │ ╰─ verage_ - │ │ │ │ │ │ ├─ fuzzing_reports [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ reports [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ fuzzing_reports [1328] + │ │ │ │ │ │ │ ╰─ / [1328] + │ │ │ │ │ │ ╰─ reports [1350] + │ │ │ │ │ │ ╰─ / [1350] │ │ │ │ │ ├─ d - │ │ │ │ │ │ ├─ ast_reports [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ ast_reports [1327] + │ │ │ │ │ │ │ ╰─ / [1327] │ │ │ │ │ │ ├─ i - │ │ │ │ │ │ │ ├─ scussions [*] - │ │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ├─ scussions [1346] + │ │ │ │ │ │ │ │ ╰─ / [1346] │ │ │ │ │ │ │ ╰─ ff │ │ │ │ │ │ │ ├─ _ - │ │ │ │ │ │ │ │ ├─ for_path [*] - │ │ │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ │ ├─ for_path [1362] + │ │ │ │ │ │ │ │ │ ╰─ / [1362] │ │ │ │ │ │ │ │ ╰─ by_file_hash/ - │ │ │ │ │ │ │ │ ╰─ {file_hash} [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ s [*] - │ │ │ │ │ │ │ ├─ / [*] + │ │ │ │ │ │ │ │ ╰─ {file_hash} [1363] + │ │ │ │ │ │ │ │ ╰─ / [1363] + │ │ │ │ │ │ │ ╰─ s [1357] + │ │ │ │ │ │ │ ├─ / [1357] │ │ │ │ │ │ │ ╰─ _ - │ │ │ │ │ │ │ ├─ metadata [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ├─ stream [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ batch [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ├─ metadata [1359] + │ │ │ │ │ │ │ │ ╰─ / [1359] + │ │ │ │ │ │ │ ├─ stream [1364] + │ │ │ │ │ │ │ │ ╰─ / [1364] + │ │ │ │ │ │ │ ╰─ batch [1358] + │ │ │ │ │ │ │ ╰─ / [1358] │ │ │ │ │ │ ╰─ e - │ │ │ │ │ │ ├─ pendency_scanning_reports [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ pendency_scanning_reports [1324] + │ │ │ │ │ │ │ ╰─ / [1324] │ │ │ │ │ │ ╰─ scriptions/ - │ │ │ │ │ │ ╰─ {version_id} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ diff [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ╰─ {version_id} [1319] + │ │ │ │ │ │ ╰─ / [1319] + │ │ │ │ │ │ ╰─ diff [1318] + │ │ │ │ │ │ ╰─ / [1318] │ │ │ │ │ ├─ s │ │ │ │ │ │ ├─ ec - │ │ │ │ │ │ │ ├─ ret_detection_reports [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ urity_reports [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ├─ ret_detection_reports [1326] + │ │ │ │ │ │ │ │ ╰─ / [1326] + │ │ │ │ │ │ │ ╰─ urity_reports [1330] + │ │ │ │ │ │ │ ╰─ / [1330] │ │ │ │ │ │ ╰─ a - │ │ │ │ │ │ ├─ ml_approval [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ st_reports [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ ml_approval [1331] + │ │ │ │ │ │ │ ╰─ / [1331] + │ │ │ │ │ │ ╰─ st_reports [1325] + │ │ │ │ │ │ ╰─ / [1325] │ │ │ │ │ ╰─ t │ │ │ │ │ ├─ oggle_ - │ │ │ │ │ │ ├─ subscription [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ award_emoji [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ subscription [1343] + │ │ │ │ │ │ │ ╰─ / [1343] + │ │ │ │ │ │ ╰─ award_emoji [1375] + │ │ │ │ │ │ ╰─ / [1375] │ │ │ │ │ ╰─ e - │ │ │ │ │ ├─ rraform_reports [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ st_reports [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ trics [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ rraform_reports [1351] + │ │ │ │ │ │ ╰─ / [1351] + │ │ │ │ │ ╰─ st_reports [1347] + │ │ │ │ │ ╰─ / [1347] + │ │ │ │ ╰─ trics [1061] + │ │ │ │ ╰─ / [1061] + │ │ │ │ ╰─ {id} [1062] + │ │ │ │ ╰─ / [1062] │ │ │ ├─ p │ │ │ │ ├─ ush_rules/ - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ {id} [1029] + │ │ │ │ │ ╰─ / [1029] │ │ │ │ ├─ ipeline - │ │ │ │ │ ├─ s [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ settings [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ charts [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ latest [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ s [1406] + │ │ │ │ │ │ ╰─ / [1406] + │ │ │ │ │ │ ├─ settings [1390] + │ │ │ │ │ │ │ ╰─ / [1390] + │ │ │ │ │ │ ├─ charts [1391] + │ │ │ │ │ │ │ ╰─ / [1391] + │ │ │ │ │ │ ├─ latest [1392] + │ │ │ │ │ │ │ ╰─ / [1392] + │ │ │ │ │ │ ├─ new [1407] + │ │ │ │ │ │ │ ╰─ / [1407] │ │ │ │ │ │ ├─ {pipeline_id} │ │ │ │ │ │ │ ╰─ / │ │ │ │ │ │ │ ├─ tests/ - │ │ │ │ │ │ │ │ ├─ summary [*] - │ │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ │ ╰─ {suite_name} [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ├─ validate_account [*] - │ │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ │ ├─ summary [1404] + │ │ │ │ │ │ │ │ │ ╰─ / [1404] + │ │ │ │ │ │ │ │ ╰─ {suite_name} [1405] + │ │ │ │ │ │ │ │ ╰─ / [1405] + │ │ │ │ │ │ │ ├─ validate_account [1389] + │ │ │ │ │ │ │ │ ╰─ / [1389] │ │ │ │ │ │ │ ╰─ stages/ │ │ │ │ │ │ │ ╰─ {stage_name} - │ │ │ │ │ │ │ ╰─ /play_manual [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ {id} [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ├─ manual_variables [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ├─ test_report [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ├─ failures [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ├─ builds [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ├─ retry [*] - │ │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ╰─ /play_manual [1403] + │ │ │ │ │ │ │ ╰─ / [1403] + │ │ │ │ │ │ ├─ {id} [1408] + │ │ │ │ │ │ │ ╰─ / [1408] + │ │ │ │ │ │ │ ├─ manual_variables [1401] + │ │ │ │ │ │ │ │ ╰─ / [1401] + │ │ │ │ │ │ │ ├─ test_report [1400] + │ │ │ │ │ │ │ │ ╰─ / [1400] + │ │ │ │ │ │ │ ├─ failures [1398] + │ │ │ │ │ │ │ │ ╰─ / [1398] + │ │ │ │ │ │ │ ├─ builds [1396] + │ │ │ │ │ │ │ │ ╰─ / [1396] + │ │ │ │ │ │ │ ├─ retry [1395] + │ │ │ │ │ │ │ │ ╰─ / [1395] │ │ │ │ │ │ │ ├─ d - │ │ │ │ │ │ │ │ ├─ ownloadable_artifacts [*] - │ │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ │ ╰─ ag [*] - │ │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ │ ├─ ownloadable_artifacts [1402] + │ │ │ │ │ │ │ │ │ ╰─ / [1402] + │ │ │ │ │ │ │ │ ╰─ ag [1397] + │ │ │ │ │ │ │ │ ╰─ / [1397] │ │ │ │ │ │ │ ├─ license - │ │ │ │ │ │ │ │ ├─ _count [*] - │ │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ │ ╰─ s [*] - │ │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ │ ├─ _count [1387] + │ │ │ │ │ │ │ │ │ ╰─ / [1387] + │ │ │ │ │ │ │ │ ╰─ s [1386] + │ │ │ │ │ │ │ │ ╰─ / [1386] │ │ │ │ │ │ │ ├─ c - │ │ │ │ │ │ │ │ ├─ odequality_report [*] - │ │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ │ ╰─ ancel [*] - │ │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ │ ├─ odequality_report [1388] + │ │ │ │ │ │ │ │ │ ╰─ / [1388] + │ │ │ │ │ │ │ │ ╰─ ancel [1394] + │ │ │ │ │ │ │ │ ╰─ / [1394] │ │ │ │ │ │ │ ╰─ s - │ │ │ │ │ │ │ ├─ ecurity [*] - │ │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ├─ ecurity [1385] + │ │ │ │ │ │ │ │ ╰─ / [1385] │ │ │ │ │ │ │ ╰─ ta - │ │ │ │ │ │ │ ├─ tus [*] - │ │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ ge [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ├─ tus [1399] + │ │ │ │ │ │ │ │ ╰─ / [1399] + │ │ │ │ │ │ │ ╰─ ge [1393] + │ │ │ │ │ │ │ ╰─ / [1393] │ │ │ │ │ │ ╰─ {*ref} - │ │ │ │ │ │ ╰─ /latest [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ _schedules [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ take_ownership [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ edit [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ play [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ╰─ /latest [1392] + │ │ │ │ │ │ ╰─ / [1392] + │ │ │ │ │ ╰─ _schedules [1411] + │ │ │ │ │ ╰─ / [1411] + │ │ │ │ │ ├─ new [1412] + │ │ │ │ │ │ ╰─ / [1412] + │ │ │ │ │ ╰─ {id} [1414] + │ │ │ │ │ ╰─ / [1414] + │ │ │ │ │ ├─ take_ownership [1410] + │ │ │ │ │ │ ╰─ / [1410] + │ │ │ │ │ ├─ edit [1413] + │ │ │ │ │ │ ╰─ / [1413] + │ │ │ │ │ ╰─ play [1409] + │ │ │ │ │ ╰─ / [1409] │ │ │ │ ├─ ackage - │ │ │ │ │ ├─ s [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ s [1081] + │ │ │ │ │ │ ╰─ / [1081] + │ │ │ │ │ │ ╰─ {id} [1082] + │ │ │ │ │ │ ╰─ / [1082] │ │ │ │ │ ╰─ _files/ │ │ │ │ │ ╰─ {id} - │ │ │ │ │ ╰─ /download [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ /download [1083] + │ │ │ │ │ ╰─ / [1083] │ │ │ │ ╰─ r │ │ │ │ ├─ o - │ │ │ │ │ ├─ ject_members [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ request_access [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ leave [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ approve_access_request [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ resend_invite [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ ject_members [1163] + │ │ │ │ │ │ ╰─ / [1163] + │ │ │ │ │ │ ├─ request_access [1161] + │ │ │ │ │ │ │ ╰─ / [1161] + │ │ │ │ │ │ ├─ leave [1159] + │ │ │ │ │ │ │ ╰─ / [1159] + │ │ │ │ │ │ ╰─ {id} [1164] + │ │ │ │ │ │ ╰─ / [1164] + │ │ │ │ │ │ ├─ approve_access_request [1162] + │ │ │ │ │ │ │ ╰─ / [1162] + │ │ │ │ │ │ ╰─ resend_invite [1160] + │ │ │ │ │ │ ╰─ / [1160] │ │ │ │ │ ╰─ tected_ - │ │ │ │ │ ├─ environments [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ search [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ branches [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ tags [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ environments [991] + │ │ │ │ │ │ ╰─ / [991] + │ │ │ │ │ │ ├─ search [990] + │ │ │ │ │ │ │ ╰─ / [990] + │ │ │ │ │ │ ╰─ {id} [992] + │ │ │ │ │ │ ╰─ / [992] + │ │ │ │ │ ├─ branches [1437] + │ │ │ │ │ │ ╰─ / [1437] + │ │ │ │ │ │ ╰─ {id} [1438] + │ │ │ │ │ │ ╰─ / [1438] + │ │ │ │ │ ╰─ tags [1439] + │ │ │ │ │ ╰─ / [1439] + │ │ │ │ │ ╰─ {id} [1440] + │ │ │ │ │ ╰─ / [1440] │ │ │ │ ╰─ eview - │ │ │ │ ├─ _markdown [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ _markdown [1075] + │ │ │ │ │ ╰─ / [1075] │ │ │ │ ╰─ / │ │ │ │ ├─ {*id} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*id} [*] + │ │ │ │ │ ╰─ / [1445] + │ │ │ │ ╰─ {*id} [1445] │ │ │ ├─ r - │ │ │ │ ├─ unners [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ unners [1119] + │ │ │ │ │ ╰─ / [1119] + │ │ │ │ │ ├─ new [1120] + │ │ │ │ │ │ ╰─ / [1120] │ │ │ │ │ ├─ toggle_ - │ │ │ │ │ │ ├─ shared_runners [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ group_runners [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ pause [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ edit [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ shared_runners [1117] + │ │ │ │ │ │ │ ╰─ / [1117] + │ │ │ │ │ │ ╰─ group_runners [1118] + │ │ │ │ │ │ ╰─ / [1118] + │ │ │ │ │ ╰─ {id} [1122] + │ │ │ │ │ ╰─ / [1122] + │ │ │ │ │ ├─ pause [1116] + │ │ │ │ │ │ ╰─ / [1116] + │ │ │ │ │ ├─ edit [1121] + │ │ │ │ │ │ ╰─ / [1121] │ │ │ │ │ ╰─ re - │ │ │ │ │ ├─ gister [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ sume [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ gister [1114] + │ │ │ │ │ │ ╰─ / [1114] + │ │ │ │ │ ╰─ sume [1115] + │ │ │ │ │ ╰─ / [1115] │ │ │ │ ├─ aw/ │ │ │ │ │ ├─ {*id} - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {*id} [*] + │ │ │ │ │ │ ╰─ / [1449] + │ │ │ │ │ ╰─ {*id} [1449] │ │ │ │ ╰─ e - │ │ │ │ ├─ quirements_management/requirements [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ import_csv [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ authorize [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ pository [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ leases [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ permalink/latest [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ quirements_management/requirements [974] + │ │ │ │ │ ╰─ / [974] + │ │ │ │ │ ╰─ import_csv [972] + │ │ │ │ │ ╰─ / [972] + │ │ │ │ │ ╰─ authorize [973] + │ │ │ │ │ ╰─ / [973] + │ │ │ │ ├─ pository [1467] + │ │ │ │ │ ╰─ / [1467] + │ │ │ │ ├─ leases [578] + │ │ │ │ │ ╰─ / [578] + │ │ │ │ │ ├─ permalink/latest [1195] + │ │ │ │ │ │ ╰─ / [1195] │ │ │ │ │ │ ├─ {*suffix_path} - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {*suffix_path} [*] - │ │ │ │ │ ├─ outbox [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ inbox [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {tag} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ╰─ / [1195] + │ │ │ │ │ │ ╰─ {*suffix_path} [1195] + │ │ │ │ │ ├─ outbox [576] + │ │ │ │ │ │ ╰─ / [576] + │ │ │ │ │ ├─ inbox [577] + │ │ │ │ │ │ ╰─ / [577] + │ │ │ │ │ ├─ new [1198] + │ │ │ │ │ │ ╰─ / [1198] + │ │ │ │ │ ╰─ {tag} [1200] + │ │ │ │ │ ╰─ / [1200] │ │ │ │ │ ├─ downloads/ │ │ │ │ │ │ ├─ {*filepath} - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {*filepath} [*] + │ │ │ │ │ │ │ ╰─ / [1196] + │ │ │ │ │ │ ╰─ {*filepath} [1196] │ │ │ │ │ ╰─ e - │ │ │ │ │ ├─ dit [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ dit [1199] + │ │ │ │ │ │ ╰─ / [1199] │ │ │ │ │ ╰─ vidences/ - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ {id} [1197] + │ │ │ │ │ ╰─ / [1197] │ │ │ │ ╰─ fs/ - │ │ │ │ ├─ switch [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ switch [1419] + │ │ │ │ │ ╰─ / [1419] │ │ │ │ ╰─ {id} - │ │ │ │ ╰─ /logs_tree [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ╰─ /logs_tree [1420] + │ │ │ │ ╰─ / [1420] │ │ │ │ ├─ {*path} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*path} [*] + │ │ │ │ │ ╰─ / [1421] + │ │ │ │ ╰─ {*path} [1421] │ │ │ ├─ s - │ │ │ │ ├─ ubscriptions [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ nippets [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ ubscriptions [986] + │ │ │ │ │ ╰─ / [986] + │ │ │ │ │ ╰─ {id} [987] + │ │ │ │ │ ╰─ / [987] + │ │ │ │ ├─ nippets [1484] + │ │ │ │ │ ╰─ / [1484] + │ │ │ │ │ ├─ new [1485] + │ │ │ │ │ │ ╰─ / [1485] │ │ │ │ │ ├─ {snippet_id} │ │ │ │ │ │ ╰─ /raw/ │ │ │ │ │ │ ╰─ {ref} │ │ │ │ │ │ ╰─ / │ │ │ │ │ │ ├─ {*path} - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {*path} [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ toggle_award_emoji [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ mark_as_spam [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ edit [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ raw [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ tarrers [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ╰─ / [1290] + │ │ │ │ │ │ ╰─ {*path} [1290] + │ │ │ │ │ ╰─ {id} [1487] + │ │ │ │ │ ╰─ / [1487] + │ │ │ │ │ ├─ toggle_award_emoji [1483] + │ │ │ │ │ │ ╰─ / [1483] + │ │ │ │ │ ├─ mark_as_spam [1482] + │ │ │ │ │ │ ╰─ / [1482] + │ │ │ │ │ ├─ edit [1486] + │ │ │ │ │ │ ╰─ / [1486] + │ │ │ │ │ ╰─ raw [1481] + │ │ │ │ │ ╰─ / [1481] + │ │ │ │ ├─ tarrers [1201] + │ │ │ │ │ ╰─ / [1201] │ │ │ │ ├─ chema/ │ │ │ │ │ ╰─ {branch} │ │ │ │ │ ╰─ / │ │ │ │ │ ├─ {*filename} - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {*filename} [*] + │ │ │ │ │ │ ╰─ / [1493] + │ │ │ │ │ ╰─ {*filename} [1493] │ │ │ │ ╰─ e - │ │ │ │ ├─ rvice_desk/custom_email [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ rvice_desk/custom_email [1515] + │ │ │ │ │ ╰─ / [1515] │ │ │ │ ├─ ttings/ - │ │ │ │ │ ├─ packages_and_registries [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ cleanup_image_tags [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ merge_requests [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ integrations [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ packages_and_registries [1147] + │ │ │ │ │ │ ╰─ / [1147] + │ │ │ │ │ │ ╰─ cleanup_image_tags [1146] + │ │ │ │ │ │ ╰─ / [1146] + │ │ │ │ │ ├─ merge_requests [1148] + │ │ │ │ │ │ ╰─ / [1148] + │ │ │ │ │ ├─ integrations [1134] + │ │ │ │ │ │ ╰─ / [1134] │ │ │ │ │ │ ├─ {integration_id} │ │ │ │ │ │ │ ╰─ /hook_logs/ - │ │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ │ ╰─ retry [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ edit [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ test [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ operations [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ╰─ {id} [1133] + │ │ │ │ │ │ │ ╰─ / [1133] + │ │ │ │ │ │ │ ╰─ retry [1132] + │ │ │ │ │ │ │ ╰─ / [1132] + │ │ │ │ │ │ ╰─ {id} [1136] + │ │ │ │ │ │ ╰─ / [1136] + │ │ │ │ │ │ ├─ edit [1135] + │ │ │ │ │ │ │ ╰─ / [1135] + │ │ │ │ │ │ ╰─ test [1131] + │ │ │ │ │ │ ╰─ / [1131] + │ │ │ │ │ ├─ operations [1130] + │ │ │ │ │ │ ╰─ / [1130] │ │ │ │ │ │ ╰─ reset_ - │ │ │ │ │ │ ├─ pagerduty_token [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ alerting_token [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ repository [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ deploy_token/create [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ branch_rules [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ cleanup [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ ci_cd [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ deploy_token/create [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ pagerduty_token [1129] + │ │ │ │ │ │ │ ╰─ / [1129] + │ │ │ │ │ │ ╰─ alerting_token [1128] + │ │ │ │ │ │ ╰─ / [1128] + │ │ │ │ │ ├─ repository [1143] + │ │ │ │ │ │ ╰─ / [1143] + │ │ │ │ │ │ ├─ deploy_token/create [1140] + │ │ │ │ │ │ │ ╰─ / [1140] + │ │ │ │ │ │ ├─ branch_rules [1142] + │ │ │ │ │ │ │ ╰─ / [1142] + │ │ │ │ │ │ ╰─ cleanup [1141] + │ │ │ │ │ │ ╰─ / [1141] + │ │ │ │ │ ├─ ci_cd [1127] + │ │ │ │ │ │ ╰─ / [1127] + │ │ │ │ │ │ ├─ deploy_token/create [1125] + │ │ │ │ │ │ │ ╰─ / [1125] │ │ │ │ │ │ ╰─ r - │ │ │ │ │ │ ├─ unner_setup_scripts [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ unner_setup_scripts [1126] + │ │ │ │ │ │ │ ╰─ / [1126] │ │ │ │ │ │ ╰─ eset_ - │ │ │ │ │ │ ├─ registration_token [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ cache [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ slack [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ slack_auth [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ edit [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ registration_token [1124] + │ │ │ │ │ │ │ ╰─ / [1124] + │ │ │ │ │ │ ╰─ cache [1123] + │ │ │ │ │ │ ╰─ / [1123] + │ │ │ │ │ ├─ slack [1139] + │ │ │ │ │ │ ╰─ / [1139] + │ │ │ │ │ │ ├─ slack_auth [1137] + │ │ │ │ │ │ │ ╰─ / [1137] + │ │ │ │ │ │ ╰─ edit [1138] + │ │ │ │ │ │ ╰─ / [1138] │ │ │ │ │ ╰─ a - │ │ │ │ │ ├─ nalytics [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ ccess_tokens [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ nalytics [1057] + │ │ │ │ │ │ ╰─ / [1057] + │ │ │ │ │ ╰─ ccess_tokens [1145] + │ │ │ │ │ ╰─ / [1145] │ │ │ │ │ ╰─ {id} - │ │ │ │ │ ╰─ /revoke [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ /revoke [1144] + │ │ │ │ │ ╰─ / [1144] │ │ │ │ ╰─ c - │ │ │ │ ├─ rets [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ rets [1058] + │ │ │ │ │ ╰─ / [1058] │ │ │ │ │ ├─ {*vueroute} - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {*vueroute} [*] + │ │ │ │ │ │ ╰─ / [1058] + │ │ │ │ │ ╰─ {*vueroute} [1058] │ │ │ │ ╰─ urity/ │ │ │ │ ├─ vulnerabilit - │ │ │ │ │ ├─ y_report [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ y_report [995] + │ │ │ │ │ │ ╰─ / [995] │ │ │ │ │ ╰─ ies/ - │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ new [1015] + │ │ │ │ │ │ ╰─ / [1015] │ │ │ │ │ ├─ {vulnerability_id} - │ │ │ │ │ │ ╰─ /notes [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ toggle_award_emoji [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ discussions [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ scanned_resources [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ policies [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ schema [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ╰─ /notes [1013] + │ │ │ │ │ │ ╰─ / [1013] + │ │ │ │ │ │ ╰─ {id} [1014] + │ │ │ │ │ │ ╰─ / [1014] + │ │ │ │ │ │ ╰─ toggle_award_emoji [1012] + │ │ │ │ │ │ ╰─ / [1012] + │ │ │ │ │ ╰─ {id} [1016] + │ │ │ │ │ ╰─ / [1016] + │ │ │ │ │ ╰─ discussions [1011] + │ │ │ │ │ ╰─ / [1011] + │ │ │ │ ├─ scanned_resources [1010] + │ │ │ │ │ ╰─ / [1010] + │ │ │ │ ├─ policies [997] + │ │ │ │ │ ╰─ / [997] + │ │ │ │ │ ├─ schema [996] + │ │ │ │ │ │ ╰─ / [996] + │ │ │ │ │ ├─ new [998] + │ │ │ │ │ │ ╰─ / [998] │ │ │ │ │ ╰─ {id} - │ │ │ │ │ ╰─ /edit [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ configuration [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ corpus_management [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ /edit [999] + │ │ │ │ │ ╰─ / [999] + │ │ │ │ ├─ configuration [1078] + │ │ │ │ │ ╰─ / [1078] + │ │ │ │ │ ├─ corpus_management [1000] + │ │ │ │ │ │ ╰─ / [1000] │ │ │ │ │ ├─ s - │ │ │ │ │ │ ├─ ecret_detection [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ ast [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ profile_library [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ ecret_detection [1008] + │ │ │ │ │ │ │ ╰─ / [1008] + │ │ │ │ │ │ ╰─ ast [1077] + │ │ │ │ │ │ ╰─ / [1077] + │ │ │ │ │ ├─ profile_library [1006] + │ │ │ │ │ │ ╰─ / [1006] │ │ │ │ │ │ ╰─ dast_s │ │ │ │ │ │ ├─ canner_profiles/ - │ │ │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ├─ new [1004] + │ │ │ │ │ │ │ │ ╰─ / [1004] │ │ │ │ │ │ │ ╰─ {id} - │ │ │ │ │ │ │ ╰─ /edit [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ │ ╰─ /edit [1005] + │ │ │ │ │ │ │ ╰─ / [1005] │ │ │ │ │ │ ╰─ ite_profiles/ - │ │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ new [1002] + │ │ │ │ │ │ │ ╰─ / [1002] │ │ │ │ │ │ ╰─ {id} - │ │ │ │ │ │ ╰─ /edit [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ api_fuzzing [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ dast [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ╰─ /edit [1003] + │ │ │ │ │ │ ╰─ / [1003] + │ │ │ │ │ ├─ api_fuzzing [1001] + │ │ │ │ │ │ ╰─ / [1001] + │ │ │ │ │ ╰─ dast [1007] + │ │ │ │ │ ╰─ / [1007] │ │ │ │ ╰─ d - │ │ │ │ ├─ ashboard [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ iscover [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ ashboard [994] + │ │ │ │ │ ╰─ / [994] + │ │ │ │ ╰─ iscover [1009] + │ │ │ │ ╰─ / [1009] │ │ │ ├─ t - │ │ │ │ ├─ erraform [*] - │ │ │ │ │ ├─ / [*] - │ │ │ │ │ ╰─ _module_registry [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ erraform [1244] + │ │ │ │ │ ├─ / [1244] + │ │ │ │ │ ╰─ _module_registry [1084] + │ │ │ │ │ ╰─ / [1084] + │ │ │ │ │ ╰─ {id} [1085] + │ │ │ │ │ ╰─ / [1085] │ │ │ │ ├─ a - │ │ │ │ │ ├─ rget_branch_rules [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ gs [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ rget_branch_rules [981] + │ │ │ │ │ │ ╰─ / [981] + │ │ │ │ │ │ ╰─ {id} [982] + │ │ │ │ │ │ ╰─ / [982] + │ │ │ │ │ ╰─ gs [1434] + │ │ │ │ │ ╰─ / [1434] + │ │ │ │ │ ├─ new [1435] + │ │ │ │ │ │ ╰─ / [1435] + │ │ │ │ │ ╰─ {id} [1436] + │ │ │ │ │ ╰─ / [1436] │ │ │ │ ╰─ r - │ │ │ │ ├─ iggers [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ acing [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ iggers [1211] + │ │ │ │ │ ╰─ / [1211] + │ │ │ │ │ ╰─ {id} [1212] + │ │ │ │ │ ╰─ / [1212] + │ │ │ │ ├─ acing [1059] + │ │ │ │ │ ╰─ / [1059] + │ │ │ │ │ ╰─ {id} [1060] + │ │ │ │ │ ╰─ / [1060] │ │ │ │ ╰─ ee/ │ │ │ │ ├─ {*id} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*id} [*] + │ │ │ │ │ ╰─ / [1448] + │ │ │ │ ╰─ {*id} [1448] │ │ │ ├─ u - │ │ │ │ ├─ sage_quotas [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ sage_quotas [1149] + │ │ │ │ │ ╰─ / [1149] │ │ │ │ ╰─ pdate/ │ │ │ │ ├─ {*id} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*id} [*] + │ │ │ │ │ ╰─ / [1444] + │ │ │ │ ╰─ {*id} [1444] │ │ │ ├─ v - │ │ │ │ ├─ ulnerability_feedback [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ count [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ ulnerability_feedback [1030] + │ │ │ │ │ ╰─ / [1030] + │ │ │ │ │ ├─ count [1032] + │ │ │ │ │ │ ╰─ / [1032] + │ │ │ │ │ ╰─ {id} [1031] + │ │ │ │ │ ╰─ / [1031] │ │ │ │ ╰─ a - │ │ │ │ ├─ lue_stream_analytics [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ lue_stream_analytics [1216] + │ │ │ │ │ ╰─ / [1216] │ │ │ │ │ ╰─ events/ - │ │ │ │ │ ├─ staging [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ review [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ issue [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ code [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ staging [1222] + │ │ │ │ │ │ ╰─ / [1222] + │ │ │ │ │ ├─ review [1221] + │ │ │ │ │ │ ╰─ / [1221] + │ │ │ │ │ ├─ issue [1217] + │ │ │ │ │ │ ╰─ / [1217] + │ │ │ │ │ ├─ code [1219] + │ │ │ │ │ │ ╰─ / [1219] │ │ │ │ │ ├─ p - │ │ │ │ │ │ ├─ roduction [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ lan [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ test [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ riables [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ├─ roduction [1223] + │ │ │ │ │ │ │ ╰─ / [1223] + │ │ │ │ │ │ ╰─ lan [1218] + │ │ │ │ │ │ ╰─ / [1218] + │ │ │ │ │ ╰─ test [1220] + │ │ │ │ │ ╰─ / [1220] + │ │ │ │ ╰─ riables [1210] + │ │ │ │ ╰─ / [1210] │ │ │ ├─ w - │ │ │ │ ├─ ikis [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ -/confluence [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ git_access [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ templates [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ pages [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ new [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ ikis [1472] + │ │ │ │ │ ╰─ / [1472] + │ │ │ │ │ ├─ -/confluence [1473] + │ │ │ │ │ │ ╰─ / [1473] + │ │ │ │ │ ├─ git_access [1468] + │ │ │ │ │ │ ╰─ / [1468] + │ │ │ │ │ ├─ templates [1470] + │ │ │ │ │ │ ╰─ / [1470] + │ │ │ │ │ ├─ pages [1469] + │ │ │ │ │ │ ╰─ / [1469] + │ │ │ │ │ ├─ new [1471] + │ │ │ │ │ │ ╰─ / [1471] │ │ │ │ │ ├─ {*id} - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ preview_markdown [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ history [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ diff [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ├─ edit [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ raw [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {*id} [*] + │ │ │ │ │ │ ╰─ / [1479] + │ │ │ │ │ │ ├─ preview_markdown [1478] + │ │ │ │ │ │ │ ╰─ / [1478] + │ │ │ │ │ │ ├─ history [1475] + │ │ │ │ │ │ │ ╰─ / [1475] + │ │ │ │ │ │ ├─ diff [1476] + │ │ │ │ │ │ │ ╰─ / [1476] + │ │ │ │ │ │ ├─ edit [1474] + │ │ │ │ │ │ │ ╰─ / [1474] + │ │ │ │ │ │ ╰─ raw [1477] + │ │ │ │ │ │ ╰─ / [1477] + │ │ │ │ │ ╰─ {*id} [1479] │ │ │ │ ╰─ ork_items/ - │ │ │ │ ├─ import_csv [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ authorize [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {iid} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ designs [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ import_csv [1276] + │ │ │ │ │ ╰─ / [1276] + │ │ │ │ │ ╰─ authorize [1277] + │ │ │ │ │ ╰─ / [1277] + │ │ │ │ ╰─ {iid} [1279] + │ │ │ │ ╰─ / [1279] + │ │ │ │ ╰─ designs [1278] + │ │ │ │ ╰─ / [1278] │ │ │ │ ├─ {*vueroute} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*vueroute} [*] + │ │ │ │ │ ╰─ / [1278] + │ │ │ │ ╰─ {*vueroute} [1278] │ │ │ ╰─ {noteable_type} │ │ │ ╰─ / │ │ │ ╰─ {noteable_id} │ │ │ ╰─ /discussions/ - │ │ │ ╰─ {id} [*] - │ │ │ ╰─ / [*] - │ │ │ ╰─ resolve [*] - │ │ │ ╰─ / [*] + │ │ │ ╰─ {id} [1517] + │ │ │ ╰─ / [1517] + │ │ │ ╰─ resolve [1516] + │ │ │ ╰─ / [1516] │ │ ├─ fi - │ │ │ ├─ nd_file [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ nd_file [1592] + │ │ │ │ ╰─ / [1592] │ │ │ │ ├─ {*rest} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*rest} [*] - │ │ │ ╰─ les [*] - │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ / [1592] + │ │ │ │ ╰─ {*rest} [1592] + │ │ │ ╰─ les [1593] + │ │ │ ╰─ / [1593] │ │ │ ├─ {*rest} - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {*rest} [*] + │ │ │ │ ╰─ / [1593] + │ │ │ ╰─ {*rest} [1593] │ │ ├─ a - │ │ │ ├─ udit_events [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ udit_events [1605] + │ │ │ │ ╰─ / [1605] │ │ │ │ ├─ {*rest} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*rest} [*] + │ │ │ │ │ ╰─ / [1605] + │ │ │ │ ╰─ {*rest} [1605] │ │ │ ╰─ lert - │ │ │ ├─ s/notify [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ s/notify [1539] + │ │ │ │ ╰─ / [1539] │ │ │ │ ╰─ {name} │ │ │ │ ╰─ / - │ │ │ │ ╰─ {endpoint_identifier} [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ _management [*] - │ │ │ ╰─ / [*] + │ │ │ │ ╰─ {endpoint_identifier} [1540] + │ │ │ │ ╰─ / [1540] + │ │ │ ╰─ _management [1602] + │ │ │ ╰─ / [1602] │ │ │ ├─ {*rest} - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {*rest} [*] + │ │ │ │ ╰─ / [1602] + │ │ │ ╰─ {*rest} [1602] │ │ ├─ b - │ │ │ ├─ adges [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ adges [1569] + │ │ │ │ ╰─ / [1569] │ │ │ │ ╰─ {*ref} │ │ │ │ ╰─ / - │ │ │ │ ├─ coverage [*] - │ │ │ │ │ ├─ / [*] + │ │ │ │ ├─ coverage [1568] + │ │ │ │ │ ├─ / [1568] │ │ │ │ │ ╰─ . - │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ pipeline [*] - │ │ │ │ ├─ / [*] + │ │ │ │ │ ╰─ {format} [1568] + │ │ │ │ │ ╰─ / [1568] + │ │ │ │ ╰─ pipeline [1567] + │ │ │ │ ├─ / [1567] │ │ │ │ ╰─ . - │ │ │ │ ╰─ {format} [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ uilds [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ╰─ {format} [1567] + │ │ │ │ ╰─ / [1567] + │ │ │ ├─ uilds [1547] + │ │ │ │ ╰─ / [1547] │ │ │ │ ├─ artifacts/ │ │ │ │ │ ├─ {*ref_name_and_path} - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {*ref_name_and_path} [*] + │ │ │ │ │ │ ╰─ / [1541] + │ │ │ │ │ ╰─ {*ref_name_and_path} [1541] │ │ │ │ ├─ {build_id} │ │ │ │ │ ╰─ /artifacts/ - │ │ │ │ │ ├─ download [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ├─ browse [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ download [1543] + │ │ │ │ │ │ ╰─ / [1543] + │ │ │ │ │ ├─ browse [1544] + │ │ │ │ │ │ ╰─ / [1544] │ │ │ │ │ │ ├─ {*path} - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {*path} [*] + │ │ │ │ │ │ │ ╰─ / [1544] + │ │ │ │ │ │ ╰─ {*path} [1544] │ │ │ │ │ ├─ file/ │ │ │ │ │ │ ├─ {*path} - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ {*path} [*] + │ │ │ │ │ │ │ ╰─ / [1545] + │ │ │ │ │ │ ╰─ {*path} [1545] │ │ │ │ │ ╰─ raw/ │ │ │ │ │ ├─ {*path} - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {*path} [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ raw [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ╰─ / [1546] + │ │ │ │ │ ╰─ {*path} [1546] + │ │ │ │ ╰─ {id} [1548] + │ │ │ │ ╰─ / [1548] + │ │ │ │ ╰─ raw [1542] + │ │ │ │ ╰─ / [1542] │ │ │ ╰─ l │ │ │ ├─ ame/ │ │ │ │ ├─ {*id} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*id} [*] + │ │ │ │ │ ╰─ / [1583] + │ │ │ │ ╰─ {*id} [1583] │ │ │ ╰─ ob/ │ │ │ ├─ {*id} - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {*id} [*] + │ │ │ │ ╰─ / [1581] + │ │ │ ╰─ {*id} [1581] │ │ ├─ c - │ │ │ ├─ ycle_analytics [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ ycle_analytics [1595] + │ │ │ │ ╰─ / [1595] │ │ │ │ ├─ {*rest} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*rest} [*] - │ │ │ ├─ lusters [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ / [1595] + │ │ │ │ ╰─ {*rest} [1595] + │ │ │ ├─ lusters [1604] + │ │ │ │ ╰─ / [1604] │ │ │ │ ├─ {*rest} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*rest} [*] + │ │ │ │ │ ╰─ / [1604] + │ │ │ │ ╰─ {*rest} [1604] │ │ │ ╰─ o - │ │ │ ├─ ntainer_registry [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ ntainer_registry [1549] + │ │ │ │ ╰─ / [1549] + │ │ │ │ ╰─ {id} [1550] + │ │ │ │ ╰─ / [1550] │ │ │ ╰─ m - │ │ │ ├─ pare [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ pare [1594] + │ │ │ │ ╰─ / [1594] │ │ │ │ ├─ {*rest} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*rest} [*] - │ │ │ ╰─ mit [*] - │ │ │ ├─ / [*] - │ │ │ │ ├─ {id} [*] - │ │ │ │ │ ├─ / [*] + │ │ │ │ │ ╰─ / [1594] + │ │ │ │ ╰─ {*rest} [1594] + │ │ │ ╰─ mit [1591] + │ │ │ ├─ / [1591] + │ │ │ │ ├─ {id} [1632] + │ │ │ │ │ ├─ / [1632] │ │ │ │ │ ╰─ . - │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ {format} [1632] + │ │ │ │ │ ╰─ / [1632] │ │ │ │ ├─ {*rest} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*rest} [*] - │ │ │ ╰─ s [*] - │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ / [1591] + │ │ │ │ ╰─ {*rest} [1591] + │ │ │ ╰─ s [1590] + │ │ │ ╰─ / [1590] │ │ │ ├─ {*rest} - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {*rest} [*] + │ │ │ │ ╰─ / [1590] + │ │ │ ╰─ {*rest} [1590] │ │ ├─ e - │ │ │ ├─ rror_tracking [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ rror_tracking [1601] + │ │ │ │ ╰─ / [1601] │ │ │ │ ├─ {*rest} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*rest} [*] - │ │ │ ├─ nvironments [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ / [1601] + │ │ │ │ ╰─ {*rest} [1601] + │ │ │ ├─ nvironments [1599] + │ │ │ │ ╰─ / [1599] │ │ │ │ ├─ {*rest} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*rest} [*] + │ │ │ │ │ ╰─ / [1599] + │ │ │ │ ╰─ {*rest} [1599] │ │ │ ╰─ dit/ │ │ │ ├─ {*id} - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {*id} [*] + │ │ │ │ ╰─ / [1585] + │ │ │ ╰─ {*id} [1585] │ │ ├─ i - │ │ │ ├─ de_terminals [*] - │ │ │ │ ├─ / [*] - │ │ │ │ │ ├─ check_config [*] - │ │ │ │ │ │ ├─ / [*] + │ │ │ ├─ de_terminals [1574] + │ │ │ │ ├─ / [1574] + │ │ │ │ │ ├─ check_config [1573] + │ │ │ │ │ │ ├─ / [1573] │ │ │ │ │ │ ╰─ . - │ │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ├─ / [*] - │ │ │ │ │ │ ├─ cancel [*] - │ │ │ │ │ │ │ ├─ / [*] + │ │ │ │ │ │ ╰─ {format} [1573] + │ │ │ │ │ │ ╰─ / [1573] + │ │ │ │ │ ╰─ {id} [1575] + │ │ │ │ │ ├─ / [1575] + │ │ │ │ │ │ ├─ cancel [1571] + │ │ │ │ │ │ │ ├─ / [1571] │ │ │ │ │ │ │ ╰─ . - │ │ │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ │ ╰─ retry [*] - │ │ │ │ │ │ ├─ / [*] + │ │ │ │ │ │ │ ╰─ {format} [1571] + │ │ │ │ │ │ │ ╰─ / [1571] + │ │ │ │ │ │ ╰─ retry [1572] + │ │ │ │ │ │ ├─ / [1572] │ │ │ │ │ │ ╰─ . - │ │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ╰─ {format} [1572] + │ │ │ │ │ │ ╰─ / [1572] │ │ │ │ │ ╰─ . - │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ {format} [1575] + │ │ │ │ │ ╰─ / [1575] │ │ │ │ ╰─ . - │ │ │ │ ╰─ {format} [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ nsights [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ query [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ ssues [*] - │ │ │ ╰─ / [*] + │ │ │ │ ╰─ {format} [1574] + │ │ │ │ ╰─ / [1574] + │ │ │ ├─ nsights [1074] + │ │ │ │ ╰─ / [1074] + │ │ │ │ ╰─ query [1073] + │ │ │ │ ╰─ / [1073] + │ │ │ ╰─ ssues [1611] + │ │ │ ╰─ / [1611] │ │ │ ├─ {*rest} - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {*rest} [*] + │ │ │ │ ╰─ / [1611] + │ │ │ ╰─ {*rest} [1611] │ │ ├─ m - │ │ │ ├─ erge_requests [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ erge_requests [1607] + │ │ │ │ ╰─ / [1607] │ │ │ │ ├─ {*rest} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*rest} [*] - │ │ │ ├─ attermost [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ / [1607] + │ │ │ │ ╰─ {*rest} [1607] + │ │ │ ├─ attermost [1596] + │ │ │ │ ╰─ / [1596] │ │ │ │ ├─ {*rest} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*rest} [*] - │ │ │ ╰─ irror [*] - │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ / [1596] + │ │ │ │ ╰─ {*rest} [1596] + │ │ │ ╰─ irror [1587] + │ │ │ ╰─ / [1587] │ │ │ ├─ {*rest} - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {*rest} [*] + │ │ │ │ ╰─ / [1587] + │ │ │ ╰─ {*rest} [1587] │ │ ├─ n │ │ │ ├─ ew/ │ │ │ │ ├─ {*id} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*id} [*] + │ │ │ │ │ ╰─ / [1584] + │ │ │ │ ╰─ {*id} [1584] │ │ │ ╰─ ote - │ │ │ ├─ s [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ outdated_line_change [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ toggle_award_emoji [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ delete_attachment [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ resolve [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ s [1558] + │ │ │ │ ╰─ / [1558] + │ │ │ │ ╰─ {id} [1559] + │ │ │ │ ╰─ / [1559] + │ │ │ │ ├─ outdated_line_change [1556] + │ │ │ │ │ ╰─ / [1556] + │ │ │ │ ├─ toggle_award_emoji [1557] + │ │ │ │ │ ╰─ / [1557] + │ │ │ │ ├─ delete_attachment [1554] + │ │ │ │ │ ╰─ / [1554] + │ │ │ │ ╰─ resolve [1555] + │ │ │ │ ╰─ / [1555] │ │ │ ╰─ able/ │ │ │ ╰─ {target_type} │ │ │ ╰─ / │ │ │ ╰─ {target_id} - │ │ │ ╰─ /notes [*] - │ │ │ ╰─ / [*] + │ │ │ ╰─ /notes [1560] + │ │ │ ╰─ / [1560] │ │ ├─ p │ │ │ ├─ ipeline - │ │ │ │ ├─ _schedules [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ _schedules [1613] + │ │ │ │ │ ╰─ / [1613] │ │ │ │ │ ├─ {*rest} - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {*rest} [*] - │ │ │ │ ╰─ s [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ │ ╰─ / [1613] + │ │ │ │ │ ╰─ {*rest} [1613] + │ │ │ │ ╰─ s [1612] + │ │ │ │ ╰─ / [1612] │ │ │ │ ├─ {*rest} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*rest} [*] + │ │ │ │ │ ╰─ / [1612] + │ │ │ │ ╰─ {*rest} [1612] │ │ │ ├─ ro - │ │ │ │ ├─ tected_environments [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ tected_environments [1600] + │ │ │ │ │ ╰─ / [1600] │ │ │ │ │ ├─ {*rest} - │ │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {*rest} [*] + │ │ │ │ │ │ ╰─ / [1600] + │ │ │ │ │ ╰─ {*rest} [1600] │ │ │ │ ╰─ metheus/ │ │ │ │ ├─ alerts/ - │ │ │ │ │ ├─ notify [*] - │ │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ├─ notify [1537] + │ │ │ │ │ │ ╰─ / [1537] │ │ │ │ │ ╰─ {id} - │ │ │ │ │ ╰─ /metrics_dashboard [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ metrics [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ validate_query [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ active_common [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ new [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ edit [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ /metrics_dashboard [1538] + │ │ │ │ │ ╰─ / [1538] + │ │ │ │ ╰─ metrics [1533] + │ │ │ │ ╰─ / [1533] + │ │ │ │ ├─ validate_query [1532] + │ │ │ │ │ ╰─ / [1532] + │ │ │ │ ├─ active_common [1531] + │ │ │ │ │ ╰─ / [1531] + │ │ │ │ ├─ new [1534] + │ │ │ │ │ ╰─ / [1534] + │ │ │ │ ╰─ {id} [1536] + │ │ │ │ ╰─ / [1536] + │ │ │ │ ╰─ edit [1535] + │ │ │ │ ╰─ / [1535] │ │ │ ╰─ a - │ │ │ ├─ th_locks [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ toggle [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ ges [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ domains [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ new [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {id} [*] - │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ clean_certificate [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ retry_auto_ssl [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ├─ verify [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ edit [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ new [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ th_locks [1070] + │ │ │ │ ╰─ / [1070] + │ │ │ │ ├─ toggle [1069] + │ │ │ │ │ ╰─ / [1069] + │ │ │ │ ╰─ {id} [1071] + │ │ │ │ ╰─ / [1071] + │ │ │ ╰─ ges [1530] + │ │ │ ╰─ / [1530] + │ │ │ ├─ domains [1525] + │ │ │ │ ╰─ / [1525] + │ │ │ │ ├─ new [1526] + │ │ │ │ │ ╰─ / [1526] + │ │ │ │ ╰─ {id} [1528] + │ │ │ │ ╰─ / [1528] + │ │ │ │ ├─ clean_certificate [1524] + │ │ │ │ │ ╰─ / [1524] + │ │ │ │ ├─ retry_auto_ssl [1523] + │ │ │ │ │ ╰─ / [1523] + │ │ │ │ ├─ verify [1522] + │ │ │ │ │ ╰─ / [1522] + │ │ │ │ ╰─ edit [1527] + │ │ │ │ ╰─ / [1527] + │ │ │ ╰─ new [1529] + │ │ │ ╰─ / [1529] │ │ ├─ r │ │ │ ├─ unner - │ │ │ │ ├─ _projects [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ │ ╰─ {id} [*] - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ s [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ _projects [1565] + │ │ │ │ │ ╰─ / [1565] + │ │ │ │ │ ╰─ {id} [1566] + │ │ │ │ │ ╰─ / [1566] + │ │ │ │ ╰─ s [1614] + │ │ │ │ ╰─ / [1614] │ │ │ │ ├─ {*rest} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*rest} [*] + │ │ │ │ │ ╰─ / [1614] + │ │ │ │ ╰─ {*rest} [1614] │ │ │ ├─ aw/ │ │ │ │ ├─ {*id} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*id} [*] + │ │ │ │ │ ╰─ / [1582] + │ │ │ │ ╰─ {*id} [1582] │ │ │ ╰─ e │ │ │ ├─ fs/ - │ │ │ │ ├─ switch [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ ├─ switch [1577] + │ │ │ │ │ ╰─ / [1577] │ │ │ │ ╰─ {id} - │ │ │ │ ╰─ /logs_tree [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ╰─ /logs_tree [1578] + │ │ │ │ ╰─ / [1578] │ │ │ │ ├─ {*path} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*path} [*] - │ │ │ ├─ pository [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ store [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ / [1579] + │ │ │ │ ╰─ {*path} [1579] + │ │ │ ├─ pository [1576] + │ │ │ │ ╰─ / [1576] + │ │ │ ├─ store [1072] + │ │ │ │ ╰─ / [1072] │ │ │ ╰─ gistry/repository/ │ │ │ ╰─ {repository_id} - │ │ │ ╰─ /tags [*] - │ │ │ ╰─ / [*] - │ │ │ ├─ bulk_destroy [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {id} [*] - │ │ │ ╰─ / [*] + │ │ │ ╰─ /tags [1552] + │ │ │ ╰─ / [1552] + │ │ │ ├─ bulk_destroy [1551] + │ │ │ │ ╰─ / [1551] + │ │ │ ╰─ {id} [1553] + │ │ │ ╰─ / [1553] │ │ ├─ s - │ │ │ ├─ nippets [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ nippets [1615] + │ │ │ │ ╰─ / [1615] │ │ │ │ ├─ {id} - │ │ │ │ │ ╰─ /raw [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ /raw [1586] + │ │ │ │ │ ╰─ / [1586] │ │ │ │ ├─ {*rest} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*rest} [*] + │ │ │ │ │ ╰─ / [1615] + │ │ │ │ ╰─ {*rest} [1615] │ │ │ ╰─ e - │ │ │ ├─ curity [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ curity [1609] + │ │ │ │ ╰─ / [1609] │ │ │ │ ├─ {*rest} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*rest} [*] + │ │ │ │ │ ╰─ / [1609] + │ │ │ │ ╰─ {*rest} [1609] │ │ │ ╰─ rv - │ │ │ ├─ erless [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ erless [1603] + │ │ │ │ ╰─ / [1603] │ │ │ │ ├─ {*rest} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*rest} [*] + │ │ │ │ │ ╰─ / [1603] + │ │ │ │ ╰─ {*rest} [1603] │ │ │ ╰─ ice_ - │ │ │ ├─ ping/web_ide_pipelines_count [*] - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ desk [*] - │ │ │ ╰─ / [*] + │ │ │ ├─ ping/web_ide_pipelines_count [1570] + │ │ │ │ ╰─ / [1570] + │ │ │ ╰─ desk [1518] + │ │ │ ╰─ / [1518] │ │ ├─ t - │ │ │ ├─ odos [*] - │ │ │ │ ╰─ / [*] - │ │ │ ├─ ags [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ odos [1561] + │ │ │ │ ╰─ / [1561] + │ │ │ ├─ ags [1588] + │ │ │ │ ╰─ / [1588] │ │ │ │ ├─ {*rest} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*rest} [*] + │ │ │ │ │ ╰─ / [1588] + │ │ │ │ ╰─ {*rest} [1588] │ │ │ ├─ emplates/ - │ │ │ │ ╰─ {template_type} [*] - │ │ │ │ ├─ / [*] - │ │ │ │ │ ╰─ {key} [*] - │ │ │ │ │ ├─ / [*] + │ │ │ │ ╰─ {template_type} [1519] + │ │ │ │ ├─ / [1519] + │ │ │ │ │ ╰─ {key} [1520] + │ │ │ │ │ ├─ / [1520] │ │ │ │ │ ╰─ . - │ │ │ │ │ ╰─ {format} [*] - │ │ │ │ │ ╰─ / [*] + │ │ │ │ │ ╰─ {format} [1520] + │ │ │ │ │ ╰─ / [1520] │ │ │ │ ╰─ . - │ │ │ │ ╰─ {format} [*] - │ │ │ │ ╰─ / [*] + │ │ │ │ ╰─ {format} [1519] + │ │ │ │ ╰─ / [1519] │ │ │ ╰─ r - │ │ │ ├─ iggers [*] - │ │ │ │ ╰─ / [*] + │ │ │ ├─ iggers [1598] + │ │ │ │ ╰─ / [1598] │ │ │ │ ├─ {*rest} - │ │ │ │ │ ╰─ / [*] - │ │ │ │ ╰─ {*rest} [*] + │ │ │ │ │ ╰─ / [1598] + │ │ │ │ ╰─ {*rest} [1598] │ │ │ ╰─ ee/ │ │ │ ├─ {*id} - │ │ │ │ ╰─ / [*] - │ │ │ ╰─ {*id} [*] + │ │ │ │ ╰─ / [1580] + │ │ │ ╰─ {*id} [1580] │ │ ├─ {*all} - │ │ │ ╰─ / [*] - │ │ ╰─ {*all} [*] - │ ╰─ {id} [*] - │ ╰─ / [*] - │ ├─ new_issuable_address [*] - │ │ ╰─ / [*] - │ ├─ generate_new_export [*] - │ │ ╰─ / [*] - │ ├─ download_export [*] - │ │ ╰─ / [*] - │ ├─ housekeeping [*] - │ │ ╰─ / [*] + │ │ │ ╰─ / [1633] + │ │ ╰─ {*all} [1633] + │ ╰─ {id} [1631] + │ ╰─ / [1631] + │ ├─ new_issuable_address [1628] + │ │ ╰─ / [1628] + │ ├─ generate_new_export [1624] + │ │ ╰─ / [1624] + │ ├─ download_export [1625] + │ │ ╰─ / [1625] + │ ├─ housekeeping [1620] + │ │ ╰─ / [1620] │ ├─ un - │ │ ├─ foldered_environment_names [*] - │ │ │ ╰─ / [*] - │ │ ╰─ archive [*] - │ │ ╰─ / [*] + │ │ ├─ foldered_environment_names [1629] + │ │ │ ╰─ / [1629] + │ │ ╰─ archive [1619] + │ │ ╰─ / [1619] │ ├─ e - │ │ ├─ xport [*] - │ │ │ ╰─ / [*] - │ │ ╰─ dit [*] - │ │ ╰─ / [*] + │ │ ├─ xport [1622] + │ │ │ ╰─ / [1622] + │ │ ╰─ dit [1630] + │ │ ╰─ / [1630] │ ├─ re - │ │ ├─ fs [*] - │ │ │ ╰─ / [*] + │ │ ├─ fs [1627] + │ │ │ ╰─ / [1627] │ │ ╰─ move_ - │ │ ├─ export [*] - │ │ │ ╰─ / [*] - │ │ ╰─ fork [*] - │ │ ╰─ / [*] + │ │ ├─ export [1623] + │ │ │ ╰─ / [1623] + │ │ ╰─ fork [1617] + │ │ ╰─ / [1617] │ ├─ a - │ │ ├─ ctivity [*] - │ │ │ ╰─ / [*] - │ │ ╰─ rchive [*] - │ │ ╰─ / [*] + │ │ ├─ ctivity [1626] + │ │ │ ╰─ / [1626] + │ │ ╰─ rchive [1618] + │ │ ╰─ / [1618] │ ╰─ t - │ ├─ oggle_star [*] - │ │ ╰─ / [*] - │ ╰─ ransfer [*] - │ ╰─ / [*] + │ ├─ oggle_star [1621] + │ │ ╰─ / [1621] + │ ╰─ ransfer [1616] + │ ╰─ / [1616] ├─ {*id} - │ ├─ / [*] + │ ├─ / [544] │ ╰─ . - │ ╰─ {format} [*] - │ ╰─ / [*] - ├─ {*repository_path} [*] - ├─ {*unmatched_route} [*] - ╰─ {*id} [*] + │ ╰─ {format} [544] + │ ╰─ / [544] + ├─ {*repository_path} [572] + ├─ {*unmatched_route} [1640] + ╰─ {*id} [544] "); Ok(()) diff --git a/tests/insert.rs b/tests/insert.rs index dacb74f4..4262acda 100644 --- a/tests/insert.rs +++ b/tests/insert.rs @@ -33,7 +33,9 @@ fn test_insert_conflict() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path - /test [*] + /test [1] + === Chains + 1 "); Ok(()) @@ -66,7 +68,12 @@ fn test_insert_conflict_expanded() -> Result<(), Box> { })) ); - insta::assert_snapshot!(router, @"=== Path"); + insta::assert_snapshot!(router, @r" + === Path + Empty + === Chains + 1 + "); Ok(()) } @@ -91,8 +98,10 @@ fn test_insert_conflict_end_wildcard() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path - / [*] - ╰─ {*catch_all} [*] + / [1] + ╰─ {*catch_all} [1] + === Chains + 1 "); Ok(()) @@ -121,7 +130,12 @@ fn test_insert_duplicate_parameter() { ))) ); - insta::assert_snapshot!(router, @"=== Path"); + insta::assert_snapshot!(router, @r" + === Path + Empty + === Chains + Empty + "); } #[test] diff --git a/tests/optimize.rs b/tests/optimize.rs index 5ddf72a1..a06b4192 100644 --- a/tests/optimize.rs +++ b/tests/optimize.rs @@ -15,10 +15,14 @@ fn test_optimize_removal() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path /users/ - ╰─ {id} [*] + ╰─ {id} [1] ╰─ / - ├─ settings [*] - ╰─ profile [*] + ├─ settings [3] + ╰─ profile [2] + === Chains + 1 + 2 + 3 "); let route = RouteBuilder::new().route("/users/{id}/profile").build()?; @@ -27,8 +31,11 @@ fn test_optimize_removal() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path /users/ - ╰─ {id} [*] - ╰─ /settings [*] + ╰─ {id} [1] + ╰─ /settings [3] + === Chains + 1 + 3 "); let route = RouteBuilder::new().route("/users/{id}/settings").build()?; @@ -37,7 +44,9 @@ fn test_optimize_removal() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path /users/ - ╰─ {id} [*] + ╰─ {id} [1] + === Chains + 1 "); Ok(()) @@ -57,10 +66,14 @@ fn test_optimize_data() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path /users/ - ╰─ {id} [*] + ╰─ {id} [1] ╰─ / - ├─ settings [*] - ╰─ profile [*] + ├─ settings [3] + ╰─ profile [2] + === Chains + 1 + 2 + 3 "); let route = RouteBuilder::new().route("/users/{id}").build()?; @@ -71,8 +84,11 @@ fn test_optimize_data() -> Result<(), Box> { /users/ ╰─ {id} ╰─ / - ├─ settings [*] - ╰─ profile [*] + ├─ settings [3] + ╰─ profile [2] + === Chains + 2 + 3 "); Ok(()) @@ -91,9 +107,13 @@ fn test_optimize_compression() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path - /a [*] - ╰─ b [*] - ╰─ c [*] + /a [2] + ╰─ b [3] + ╰─ c [1] + === Chains + 1 + 2 + 3 "); let route = RouteBuilder::new().route("/ab").build()?; @@ -101,8 +121,11 @@ fn test_optimize_compression() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path - /a [*] - ╰─ bc [*] + /a [2] + ╰─ bc [1] + === Chains + 1 + 2 "); Ok(()) diff --git a/tests/optional.rs b/tests/optional.rs index ffad2991..d96b2b15 100644 --- a/tests/optional.rs +++ b/tests/optional.rs @@ -12,9 +12,11 @@ fn test_optional_starting() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path / - ├─ users [*] + ├─ users [1] ╰─ {lang} - ╰─ /users [*] + ╰─ /users [1] + === Chains + 1 "); let request = RequestBuilder::new().path("/en/users").build()?; @@ -57,8 +59,10 @@ fn test_optional_ending() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path - /users [*] - ╰─ / [*] + /users [1] + ╰─ / [1] + === Chains + 1 "); let request = RequestBuilder::new().path("/users").build()?; @@ -101,10 +105,12 @@ fn test_optional_nested() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path - / [*] - ╰─ a [*] - ╰─ /b [*] - ╰─ /c [*] + / [1] + ╰─ a [1] + ╰─ /b [1] + ╰─ /c [1] + === Chains + 1 "); let request = RequestBuilder::new().path("/a/b/c").build()?; @@ -175,8 +181,10 @@ fn test_optional_only() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path - / [*] - ╰─ test [*] + / [1] + ╰─ test [1] + === Chains + 1 "); let request = RequestBuilder::new().path("/test").build()?; @@ -219,15 +227,17 @@ fn test_optional_touching() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path - / [*] - ├─ a [*] + / [1] + ├─ a [1] │ ╰─ / - │ ├─ b [*] - │ │ ╰─ /c [*] - │ ╰─ c [*] - ├─ b [*] - │ ╰─ /c [*] - ╰─ c [*] + │ ├─ b [1] + │ │ ╰─ /c [1] + │ ╰─ c [1] + ├─ b [1] + │ ╰─ /c [1] + ╰─ c [1] + === Chains + 1 "); let request = RequestBuilder::new().path("/a/b/c").build()?; diff --git a/tests/static.rs b/tests/static.rs index 24336fea..8c144e1a 100644 --- a/tests/static.rs +++ b/tests/static.rs @@ -11,7 +11,9 @@ fn test_static_simple() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path - /users [*] + /users [1] + === Chains + 1 "); let request = RequestBuilder::new().path("/users").build()?; @@ -46,8 +48,11 @@ fn test_static_overlapping() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path - /user [*] - ╰─ s [*] + /user [1] + ╰─ s [2] + === Chains + 1 + 2 "); let request = RequestBuilder::new().path("/user").build()?; @@ -101,8 +106,11 @@ fn test_static_overlapping_slash() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path /user - ├─ /1 [*] - ╰─ _1 [*] + ├─ /1 [2] + ╰─ _1 [1] + === Chains + 1 + 2 "); let request = RequestBuilder::new().path("/user_1").build()?; @@ -165,15 +173,22 @@ fn test_static_split_multibyte() -> Result<(), Box> { === Path /� ├─ �‍👩‍� - │ ├─ � [*] - │ ╰─ � [*] + │ ├─ � [4] + │ ╰─ � [3] ╰─ �‍� ├─ �‍� - │ ├─ � [*] - │ ╰─ � [*] + │ ├─ � [6] + │ ╰─ � [5] ╰─ �‍� - ├─ � [*] - ╰─ � [*] + ├─ � [2] + ╰─ � [1] + === Chains + 1 + 2 + 3 + 4 + 5 + 6 "); let request = RequestBuilder::new().path("/👨‍👩‍👧").build()?; // Family: Man, Woman, Girl @@ -235,8 +250,11 @@ fn test_static_case_sensitive() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path / - ├─ Users [*] - ╰─ users [*] + ├─ Users [2] + ╰─ users [1] + === Chains + 1 + 2 "); let request = RequestBuilder::new().path("/users").build()?; @@ -279,7 +297,9 @@ fn test_static_whitespace() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path - /users /items [*] + /users /items [1] + === Chains + 1 "); let request = RequestBuilder::new().path("/users /items").build()?; @@ -315,8 +335,11 @@ fn test_static_duplicate_slashes() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path /users/ - ├─ /items [*] - ╰─ items [*] + ├─ /items [2] + ╰─ items [1] + === Chains + 1 + 2 "); let request = RequestBuilder::new().path("/users/items").build()?; @@ -359,7 +382,9 @@ fn test_static_empty_segments() -> Result<(), Box> { insta::assert_snapshot!(router, @r" === Path - /users///items [*] + /users///items [1] + === Chains + 1 "); let request = RequestBuilder::new().path("/users///items").build()?; diff --git a/tests/wildcard.rs b/tests/wildcard.rs index 48e97704..eb32470b 100644 --- a/tests/wildcard.rs +++ b/tests/wildcard.rs @@ -13,7 +13,9 @@ fn test_wildcard_simple() -> Result<(), Box> { === Path / ╰─ {*path} - ╰─ /delete [*] + ╰─ /delete [1] + === Chains + 1 "); let request = RequestBuilder::new().path("/docs/delete").build()?; @@ -68,7 +70,9 @@ fn test_wildcard_multiple() -> Result<(), Box> { ╰─ {*prefix} ╰─ /static/ ╰─ {*suffix} - ╰─ /file [*] + ╰─ /file [1] + === Chains + 1 "); let request = RequestBuilder::new().path("/a/static/b/file").build()?; @@ -115,7 +119,9 @@ fn test_wildcard_inline() -> Result<(), Box> { === Path / ╰─ {*path} - ╰─ .html [*] + ╰─ .html [1] + === Chains + 1 "); let request = RequestBuilder::new().path("/page.html").build()?; @@ -165,7 +171,9 @@ fn test_wildcard_greedy() -> Result<(), Box> { / ╰─ {*first} ╰─ - - ╰─ {*second} [*] + ╰─ {*second} [1] + === Chains + 1 "); let request = RequestBuilder::new().path("/a-b-c").build()?; @@ -215,7 +223,9 @@ fn test_wildcard_empty_segments() -> Result<(), Box> { === Path / ╰─ {*path} - ╰─ /end [*] + ╰─ /end [1] + === Chains + 1 "); let request = RequestBuilder::new().path("/start/middle/end").build()?; @@ -268,14 +278,20 @@ fn test_wildcard_priority() -> Result<(), Box> { === Path / ├─ prefix. - │ ╰─ {*suffix} [*] + │ ╰─ {*suffix} [4] ├─ static/ - │ ├─ path [*] - │ ╰─ {*rest} [*] + │ ├─ path [1] + │ ╰─ {*rest} [2] ├─ {*prefix} - │ ╰─ .suffix [*] + │ ╰─ .suffix [5] ╰─ {*path} - ╰─ /static [*] + ╰─ /static [3] + === Chains + 1 + 2 + 3 + 4 + 5 "); let request = RequestBuilder::new().path("/static/path").build()?;