mirror of
https://github.com/actix/actix-web.git
synced 2024-11-30 05:21:09 +00:00
Merge pull request #88 from rofrol/patch-2
be consistent with host - had CORS preflight once
This commit is contained in:
commit
b0ba23ff55
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ impl Handler<GraphQLData> for GraphQLExecutor {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn graphiql(_req: HttpRequest<State>) -> Result<HttpResponse> {
|
fn graphiql(_req: HttpRequest<State>) -> Result<HttpResponse> {
|
||||||
let html = graphiql_source("http://localhost:8080/graphql");
|
let html = graphiql_source("http://127.0.0.1:8080/graphql");
|
||||||
Ok(HttpResponse::build(StatusCode::OK)
|
Ok(HttpResponse::build(StatusCode::OK)
|
||||||
.content_type("text/html; charset=utf-8")
|
.content_type("text/html; charset=utf-8")
|
||||||
.body(html).unwrap())
|
.body(html).unwrap())
|
||||||
|
|
Loading…
Reference in a new issue