We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52cea71 commit 7e88ba5Copy full SHA for 7e88ba5
src/github.rs
@@ -1,3 +1,5 @@
1
+//! This module implements functionality for interacting with GitHub.
2
+
3
use curl;
4
use curl::easy::{Easy, List};
5
src/http.rs
@@ -1,3 +1,6 @@
+//! This module implements middleware for adding secuirty headers to
+//! http responses in production.
use conduit::{Request, Response};
use conduit_middleware::Middleware;
6
src/owner.rs
@@ -147,7 +147,7 @@ impl Team {
147
/// Tries to create a Github Team from scratch. Assumes `org` and `team` are
148
/// correctly parsed out of the full `name`. `name` is passed as a
149
/// convenience to avoid rebuilding it.
150
- pub fn create_github_team(
+ fn create_github_team(
151
app: &App,
152
conn: &PgConnection,
153
login: &str,
0 commit comments