Skip to content

Commit 3292b05

Browse files
baronfelKrzysztof-Cieslak
authored andcommitted
fully-qualify applicationbuilder type to use the saturn type instead of aspnetcore
1 parent 08db28d commit 3292b05

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Saturn.Extensions.HttpSys/Saturn.HttpSys.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ open Microsoft.AspNetCore.Hosting
55
open Microsoft.Extensions.DependencyInjection
66
open Microsoft.AspNetCore.Server.HttpSys
77

8-
type ApplicationBuilder with
8+
type Saturn.Application.ApplicationBuilder with
99

1010
[<CustomOperation("use_httpsys")>]
1111
member __.UseHttpSys(state) =

src/Saturn.Extensions.OpenIdConnect/OpenId.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module OpenId =
1616
c.AddCookie() |> ignore
1717

1818
// Extend Saturn's application { ... } computation expression
19-
type ApplicationBuilder with
19+
type Saturn.Application.ApplicationBuilder with
2020
/// Enables OpenId authentication with custom configuration
2121
[<CustomOperation("use_open_id_auth_with_config")>]
2222
member __.UseOpenIdAuthWithConfig(state: ApplicationState, (config: Action<OpenIdConnect.OpenIdConnectOptions>)) =

src/Saturn.Extensions.Turbolinks/Turbolinks.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ type TurbolinksMiddleware (next: RequestDelegate) =
4848
), ctx)
4949
next.Invoke(ctx)
5050

51-
type ApplicationBuilder with
51+
type Saturn.Application.ApplicationBuilder with
5252

5353
[<CustomOperation("use_turbolinks")>]
5454
///Enable turbolinks supports for whole application (all endpoints)

0 commit comments

Comments
 (0)