Skip to content

Commit 274e2c3

Browse files
committed
sentry - routes - Fix doc auth required paths
1 parent 331065a commit 274e2c3

File tree

1 file changed

+27
-2
lines changed

1 file changed

+27
-2
lines changed

sentry/src/routes.rs

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,23 @@
66
//!
77
//! - [`GET /v5/channel/list`](crate::routes::channel::channel_list)
88
//!
9-
//! - [`GET /v5/channel/:id/accounting`](channel::get_accounting_for_channel) (auth required)
9+
//! todo
10+
//!
11+
//! - [`GET /v5/channel/:id/accounting`](channel::get_accounting_for_channel)
12+
//!
13+
//! todo
1014
//!
1115
//! - [`GET /v5/channel/:id/spender/:addr`](channel::get_spender_limits) (auth required)
1216
//!
17+
//! todo
18+
//!
1319
//! - [`POST /v5/channel/:id/spender/:addr`](channel::add_spender_leaf) (auth required)
1420
//!
21+
//! todo
22+
//!
1523
//! - [`GET /v5/channel/:id/spender/all`](channel::get_all_spender_limits) (auth required)
1624
//!
25+
//! todo
1726
//!
1827
//! - [`GET /v5/channel/:id/validator-messages`](channel::validator_message::list_validator_messages)
1928
//!
@@ -26,6 +35,12 @@
2635
//!
2736
//! - [`POST /v5/channel/:id/validator-messages`](channel::validator_message::create_validator_messages) (auth required)
2837
//!
38+
//! todo
39+
//!
40+
//! - [`POST /v5/channel/:id/last-approved`](channel::last_approved)
41+
//!
42+
//! todo
43+
//!
2944
//! - `POST /v5/channel/:id/pay` (auth required)
3045
//!
3146
//! TODO: implement and document as part of issue #382
@@ -73,6 +88,7 @@
7388
//!
7489
//!
7590
//! - `POST /v5/campaign` (auth required)
91+
//!
7692
//! Create a new Campaign.
7793
//!
7894
//! It will make sure the `Channel` is created if new and it will update the spendable amount using the `Adapter::get_deposit()`.
@@ -83,15 +99,24 @@
8399
//!
84100
//! `POST /v5/campaign/:id/close` (auth required)
85101
//!
86-
//! # Analytics
102+
//! todo
103+
//!
104+
//! ## Analytics
105+
//!
106+
//! - `GET /v5/analytics`
107+
//!
108+
//! todo
87109
//!
88110
//! - `GET /v5/analytics/for-publisher` (auth required)
111+
//!
89112
//! todo
90113
//!
91114
//! - `GET /v5/analytics/for-advertiser` (auth required)
115+
//!
92116
//! todo
93117
//!
94118
//! - `GET /v5/analytics/for-admin` (auth required)
119+
//!
95120
//! todo
96121
//!
97122
pub use analytics::analytics as get_analytics;

0 commit comments

Comments
 (0)